Advertisement
Guest User

Untitled

a guest
Jun 25th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.59 KB | None | 0 0
  1. // EnamProject.cpp : Defines the entry point for the console application.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include <iostream>
  6. #include <string>
  7.  
  8. using namespace std;
  9.  
  10. class CInputConfigEntry
  11. {
  12.     //enam
  13.     string mWay;
  14.     unsigned int mRenevalTime;
  15.     int maxVal;
  16.  
  17. };
  18.  
  19. class GlobalConfig
  20. {
  21.    
  22.     GlobalConfig(const GlobalConfig &obj) = delete;
  23.     void GlobalConfig :: operator = (const GlobalConfig  &obj);
  24.    
  25. private:
  26.     GlobalConfig();
  27. };
  28.  
  29. class CFrame
  30. {
  31.     string mJpegImage;
  32.     unsigned long id;
  33.     string getImageAsString() {
  34.         return mJpegImage;
  35.    }
  36. };
  37.  
  38. int main()
  39. {
  40.     return 0;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement