/* * Copyright 1995, 1996 Perforce Software. All rights reserved. * * This file is part of the Library RCS. See rcstest.c. */ /* * rcsmeta.h - print out RCS metadata, given an RcsArchive structure * * Classes defined: * * RcsGenMeta - control block for generating metadata * * Public methods: * * RcsGenMeta::RcsGenMeta -- set up for metadata generation * RcsGenMeta::Generate - write metadata to stdio file * * History: * 2-18-97 (seiwald) - translated to C++. */ class FileSys; struct RcsRevMeta; class RcsGenMeta : public RcsGenFile { public: RcsGenMeta( FileSys *wf, RcsArchive *ar, char *arch ); void Generate( Error *e ); private: void Trunk( RcsRevMeta *rm, Error *e ); void Branch( RcsRevMeta *rm, Error *e ) ; void Branches( RcsRevMeta *rm, RcsRev *rev, Error *e ); void Rev( RcsRevMeta *rm, RcsRev *rev ); void File3( const char *domain, const char *branch, const char *path ); RcsArchive *ar; const char *archName; char path[256]; int isDead; } ;
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 18760 | rlranft |
Populate -o //guest/perforce_software/p4/... //guest/rlranft/p4/.... |
||
//guest/perforce_software/p4/2015-1/rcs/rcsmeta.h | |||||
#1 | 15903 | Matt Attaway | Everything should be happy now between the Workshop and the depot paths | ||
//guest/perforce_software/p4/2015_1/rcs/rcsmeta.h | |||||
#1 | 15901 | Matt Attaway | Clean up code to fit modern Workshop naming standards | ||
//guest/perforce_software/p4/2015.1/rcs/rcsmeta.h | |||||
#1 | 12190 | Matt Attaway | Initial drop of 2015.1 p4/p4api source |