You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			28 lines
		
	
	
		
			450 B
		
	
	
	
		
			Plaintext
		
	
		
		
			
		
	
	
			28 lines
		
	
	
		
			450 B
		
	
	
	
		
			Plaintext
		
	
| 
											2 years ago
										 | #ifndef __{thisPackageName}_{className}_H__ | ||
|  | #define __{thisPackageName}_{className}_H__ | ||
|  | 
 | ||
|  | #include "FairyGUI.h" | ||
|  | 
 | ||
|  | namespace {packageName} | ||
|  | { | ||
|  | {forwardDeclaration} | ||
|  | class {className} : public {componentName} | ||
|  | { | ||
|  | public: | ||
|  |     static const std::string URL; | ||
|  |     static {className}* create(); | ||
|  | 
 | ||
|  | {variable} | ||
|  | 
 | ||
|  | protected: | ||
|  |     virtual void onConstruct() override; | ||
|  | 	 | ||
|  | private: | ||
|  |     static {className}* createByBinder(); | ||
|  | 
 | ||
|  |     friend class {packageName}Binder; | ||
|  | }; | ||
|  | 
 | ||
|  | } | ||
|  | 
 | ||
|  | #endif |