00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef _BibtexEntry_h
00024 #define _BibtexEntry_h
00025
00026 #include <string>
00027 #include <iostream>
00028 #include <fstream>
00029 #include <vector>
00030
00031
00032
00033 namespace bibtex2bibtex {
00034 class BibtexEntry
00035 {
00036 protected:
00037 std::string text;
00038
00039 public:
00040 BibtexEntry (void) {text = "";}
00041
00042 BibtexEntry (std::string textstring) {text = textstring;}
00043
00044 virtual ~BibtexEntry (void) {}
00045
00046 std::string coworkers (void);
00047
00048 std::string key (void);
00049
00050 void key (std::string);
00051
00052 std::string source (void);
00053
00054 std::string authors (void);
00055
00056 std::string year (void);
00057
00058 std::string copy (void);
00059
00060 std::ofstream &output (std::ofstream &);
00061
00062 std::string field (std::string);
00063
00064 };
00065 }
00066
00067 #endif
00068