Changeset 18058 for trunk/FACT++/dim/src/examples/pvss_dim_server.cxx
- Timestamp:
- 01/03/15 18:26:23 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/dim/src/examples/pvss_dim_server.cxx
r15282 r18058 31 31 } 32 32 public : 33 RecvCommand(c har *name) : DimCommand(name,"C") {reset_flag = 0;};33 RecvCommand(const char *name) : DimCommand(name,"C") {reset_flag = 0;}; 34 34 int isReset() {return reset_flag;}; 35 35 void clearReset() {reset_flag = 0;}; … … 47 47 } 48 48 public : 49 RecvCommandComplex(c har *name) : DimCommand(name,"I:1;C:1;I:1;F:1;C") {};49 RecvCommandComplex(const char *name) : DimCommand(name,"I:1;C:1;I:1;F:1;C") {}; 50 50 }; 51 51 /* … … 95 95 } 96 96 public: 97 RpcService(c har *name): DimRpc(name,"I","I") {val = 0;};97 RpcService(const char *name): DimRpc(name,"I","I") {val = 0;}; 98 98 }; 99 99
Note:
See TracChangeset
for help on using the changeset viewer.