UNIVERS  15.3
UNIVERS base processing software API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
zqb_autoname.hpp
1 /* zqb_autoname.hpp */
2 /* $Id: zqb_autoname.hpp,v 1.5 2006/12/06 09:42:30 guser1 Exp $ */
3 #ifndef __zqb_autoname_hpp
4 #define __zqb_autoname_hpp
5 
6 #include <stdio.h>
7 #include <string.h>
8 #include <ctype.h>
9 
10 #include "zqb_name.hpp"
11 
12 
18 class ZqbAutoName : public ZqbName
19 {
20 public:
21 
25  ZqbAutoName (int* pCounter,
26  const char* szRoot,
27  const char* szCustomName = NULL);
28 
30  virtual ~ZqbAutoName ();
31 
32 private:
33 
35  int *m_pCounter;
36 
37 };
38 
39 
40 #endif /* zqb_autoname.hpp */
Definition: zqb_name.hpp:15
virtual ~ZqbAutoName()
Definition: zqb_autoname.hpp:18
ZqbAutoName(int *pCounter, const char *szRoot, const char *szCustomName=NULL)