dsrc isn't necessary for this repo
[client-tools.git] / src / external / 3rd / library / perforce / include / ident.h
blob85d5bf374e9afc927790aa5d6b3d5acb8792a0bc
1 /*
2 * Copyright 1995, 1996 Perforce Software. All rights reserved.
4 * This file is part of Perforce - the FAST SCM System.
5 */
7 # define IdentMagic "@(#)"
9 class Ident {
11 public:
12 void GetMessage( StrBuf *s, int isServer = 0 );
13 const char * GetIdent() { return ident + sizeof( IdentMagic ) - 1; }
14 const char * GetDate() { return supportDate; }
16 // private, but statically initialized
18 const char *ident;
19 const char *supportDate;