54 lines
1.2 KiB
C++
54 lines
1.2 KiB
C++
// Filename: dcFile.h
|
|
// Created by: drose (05Oct00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef DCFILE_H
|
|
#define DCFILE_H
|
|
|
|
#include "dcbase.h"
|
|
#include "dcClass.h"
|
|
|
|
#include <vector>
|
|
#include <map>
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : DCFile
|
|
// Description : Represents the complete list of Distributed Class
|
|
// descriptions as read from a .dc file.
|
|
////////////////////////////////////////////////////////////////////
|
|
class DCFile {
|
|
PUBLISHED:
|
|
DCFile();
|
|
~DCFile();
|
|
|
|
bool read(const string &filename);
|
|
bool read(istream &in, const string &filename = string());
|
|
|
|
bool write(const string &filename) const;
|
|
bool write(ostream &out, const string &filename = string()) const;
|
|
|
|
int get_num_classes();
|
|
DCClass *get_class(int n);
|
|
|
|
DCClass *get_class_by_name(const string &name);
|
|
|
|
public:
|
|
bool add_class(DCClass *dclass);
|
|
|
|
public:
|
|
// This vector is the primary interface to the distributed classes
|
|
// read from the file.
|
|
typedef vector<DCClass *> Classes;
|
|
Classes _classes;
|
|
|
|
public:
|
|
// This map is built up during parsing for the convenience of the parser.
|
|
typedef map<string, DCClass *> ClassesByName;
|
|
ClassesByName _classes_by_name;
|
|
};
|
|
|
|
#endif
|
|
|
|
|