23 lines
		
	
	
		
			362 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			362 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef DICTIONARYINTERFACE_H
 | |
| #define DICTIONARYINTERFACE_H
 | |
| 
 | |
| class DictionaryInterface
 | |
| {
 | |
| public:
 | |
| protected:
 | |
|     DictionaryInterface()
 | |
|     {
 | |
| 
 | |
|     }
 | |
|     DictionaryInterface(const DictionaryInterface &Object)
 | |
|     {
 | |
|         (void)Object;
 | |
|     }
 | |
|     virtual ~DictionaryInterface(){}
 | |
|     virtual const char *toString() = 0;
 | |
| private:
 | |
| };
 | |
| 
 | |
| 
 | |
| #endif //DICTIONARYINTERFACE_H
 |