Mobile API Reference  MicroStrategy 2019
NoCopy.h
Go to the documentation of this file.
1 //==============================================================================================
2 // FILENAME : NoCopy.h
3 // AUTHOR : Andres Murillo
4 // CREATION : 9/26/1999
5 // Copyright (C) MicroStrategy Incorporated 1999
6 // All Rights Reserved
7 //==============================================================================================
8 #ifndef MBase_NoCopy_h
9 #define MBase_NoCopy_h
10 
11 #include "../Base/Base.h"
12 
13 namespace MBase
14 {
22  {
23  protected:
24  // Only derived classes can call the constructor
26  {
27  }
28 
29  private:
30  // Declare copy constructor and asignment operator as private
31  NoCopy(const NoCopy&);
32  const NoCopy& operator=(const NoCopy&);
33  };
34 }
35 
36 #endif // MBase_NoCopy_h
NoCopy()
Definition: NoCopy.h:25
#define DLL_BASE_EXIM
Definition: Base.h:20
Definition: Allocator.h:47
Definition: NoCopy.h:21