| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- // Filename: cppFile.h
- // Created by: drose (11Nov99)
- //
- ////////////////////////////////////////////////////////////////////
- //
- // PANDA 3D SOFTWARE
- // Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
- //
- // All use of this software is subject to the terms of the Panda 3d
- // Software license. You should have received a copy of this license
- // along with this source code; you will also find a current copy of
- // the license at http://etc.cmu.edu/panda3d/docs/license/ .
- //
- // To contact the maintainers of this program write to
- // [email protected] .
- //
- ////////////////////////////////////////////////////////////////////
- #ifndef CPPFILE_H
- #define CPPFILE_H
- #include "dtoolbase.h"
- #include "filename.h"
- ///////////////////////////////////////////////////////////////////
- // Class : CPPFile
- // Description : This defines a source file (typically a C++ header
- // file) that is parsed by the CPPParser. Each
- // declaration indicates the source file where it
- // appeared.
- ////////////////////////////////////////////////////////////////////
- class CPPFile {
- public:
- enum Source {
- S_local, // File resides in the current directory
- S_alternate, // File resides in some other directory
- S_system, // File resides in a system directory
- S_none, // File is internally generated
- };
- CPPFile(const Filename &filename = "",
- const Filename &filename_as_referenced = "",
- Source source = S_none);
- CPPFile(const CPPFile ©);
- void operator = (const CPPFile ©);
- ~CPPFile();
- bool is_c_or_i_file() const;
- static bool is_c_or_i_file(const Filename &filename);
- bool is_c_file() const;
- static bool is_c_file(const Filename &filename);
- void replace_nearer(const CPPFile &other);
- bool operator < (const CPPFile &other) const;
- bool operator == (const CPPFile &other) const;
- bool operator != (const CPPFile &other) const;
- const char *c_str() const;
- bool empty() const;
- Filename _filename;
- Filename _filename_as_referenced;
- Source _source;
- };
- inline ostream &operator << (ostream &out, const CPPFile &file) {
- return out << file._filename;
- }
- #endif
|