Panda3D
testCopy.h
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file testCopy.h
10  * @author drose
11  * @date 2000-10-31
12  */
13 
14 #ifndef TESTCOPY_H
15 #define TESTCOPY_H
16 
17 #include "pandatoolbase.h"
18 
19 #include "cvsCopy.h"
20 
21 /**
22  * A program to copy ordinary files into the cvs tree. Mainly to test
23  * CVSCopy.
24  */
25 class TestCopy : public CVSCopy {
26 public:
27  TestCopy();
28 
29  void run();
30 
31 protected:
32  virtual bool copy_file(const Filename &source, const Filename &dest,
33  CVSSourceDirectory *dir, void *extra_data,
34  bool new_file);
35 };
36 
37 #endif
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
This is the base class for a family of programs that copy files, typically model files like ....
Definition: cvsCopy.h:30
This represents one particular directory in the hierarchy of source directory files.
The name of a file, such as a texture file or an Egg file.
Definition: filename.h:39
A program to copy ordinary files into the cvs tree.
Definition: testCopy.h:25