1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
/***************************************************************************
File : OriginFile.h
--------------------------------------------------------------------
Copyright : (C) 2005-2007 Stefan Gerlach
(C) 2007-2008 Alex Kargovsky, Ion Vasilief
Email (use @ for *) : kargovsky*yumr.phys.msu.su, ion_vasilief*yahoo.fr
Description : Origin file import class
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, *
* Boston, MA 02110-1301 USA *
* *
***************************************************************************/
#ifndef ORIGIN_FILE_H
#define ORIGIN_FILE_H
#include "OriginObj.h"
#include "OriginParser.h"
#include <memory>
using namespace std;
class OriginFile
{
public:
explicit OriginFile(const string& fileName);
bool parse(); //!< parse Origin file
double version() const; //!< get version of Origin file
vector<Origin::SpreadColumn>::size_type datasetCount() const; //!< get number of datasets
Origin::SpreadColumn& dataset(vector<Origin::SpreadColumn>::size_type ds) const; //!< get dataset ds
vector<Origin::SpreadSheet>::size_type spreadCount() const; //!< get number of spreadsheets
Origin::SpreadSheet& spread(vector<Origin::SpreadSheet>::size_type s) const; //!< get spreadsheet s
vector<Origin::Matrix>::size_type matrixCount() const; //!< get number of matrices
Origin::Matrix& matrix(vector<Origin::Matrix>::size_type m) const; //!< get matrix m
vector<Origin::Function>::size_type functionCount() const; //!< get number of functions
vector<Origin::Function>::difference_type functionIndex(const string& name) const; //!< get index (or -1) of function named name
Origin::Function& function(vector<Origin::Function>::size_type f) const; //!< get function f
vector<Origin::Graph>::size_type graphCount() const; //!< get number of graphs
Origin::Graph& graph(vector<Origin::Graph>::size_type g) const; //!< get graph g
vector<Origin::Note>::size_type noteCount() const; //!< get number of notes
Origin::Note& note(vector<Origin::Note>::size_type n) const; //!< get note n
vector<Origin::Excel>::size_type excelCount() const; //!< get number of excels
Origin::Excel& excel(vector<Origin::Excel>::size_type e) const; //!< get excel e
const tree<Origin::ProjectNode>* project() const; //!< get project tree
string resultsLogString() const; //!< get Results Log
private:
unsigned int fileVersion, buildVersion, ioError;
unique_ptr<OriginParser> parser;
};
string liboriginVersionString();
unsigned int liboriginVersion();
unsigned int liboriginVersionMajor();
unsigned int liboriginVersionMinor();
unsigned int liboriginVersionBugfix();
#endif // ORIGIN_FILE_H
|