//
// WDActionConfig.h
// WadeMobile
//
// Created by huangbo on 13-8-28.
// Copyright (c) 2013年 huangbo. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "WDXMLParser.h"
#import "WDAppPathManager.h"
#import "WDConstant.h"
@interface WDActionConfig : NSObject
{
NSMutableDictionary *actionDict;
NSString *MOBILE_ACTION_CONFIG;
NSString *CONFIG_PATH;
}
+ (WDActionConfig *)sharedInstance;
+ (NSString *)getClass:(NSString *)action;
+ (NSString *)getMethod:(NSString *)action;
@end
|