My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
Test.h
1 // $Id: Test.h,v 1.1.1.1 2009/07/06 23:57:24 eml Exp $
2 
3 #ifndef GCP_UTIL_TEST.H_H
4 #define GCP_UTIL_TEST.H_H
5 
16 #include <iostream>
17 
18 namespace gcp {
19  namespace util {
20 
21  class Test.h {
22  public:
23 
27  Test.h();
28 
32  Test.h(const Test.h& objToBeCopied);
33 
37  Test.h(Test.h& objToBeCopied);
38 
42  void operator=(const Test.h& objToBeAssigned);
43 
47  void operator=(Test.h& objToBeAssigned);
48 
52  friend std::ostream& operator<<(std::ostream& os, Test.h& obj);
53 
57  virtual ~Test.h();
58 
59  private:
60  }; // End class Test.h
61 
62  } // End namespace util
63 } // End namespace gcp
64 
65 
66 
67 #endif // End #ifndef GCP_UTIL_TEST.H_H
Definition: Test.h:21