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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
/**
* @file thobjectname.h
* Object name class.
*/
/* Copyright (C) 2000 Stacho Mudrak
*
* $Date: $
* $RCSfile: $
* $Revision: $
*
* --------------------------------------------------------------------
* 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
* 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 thobjectname_h
#define thobjectname_h
#include "thmbuffer.h"
#include <string>
/**
* Survey station class.
*/
class thobjectname {
public:
const char * name = {}, ///< Object name.
* survey = {}; ///< Survey name.
class thsurvey * psurvey = nullptr; ///< Parent survey.
unsigned long id = {}; ///< Object identifier.
/**
* Standard constructor.
*/
thobjectname();
/**
* Two argument constructor.
*/
thobjectname(char * n, char * s) : name(n), survey(s), id(0) {}
/**
* Clear station.
*/
void clear();
/**
* Return true if empty.
*/
bool is_empty();
/**
* Print object name with survey into str.
*/
std::string print_name();
/**
* Print object name with survey up to given level into str.
*/
std::string print_full_name(int slevel = -1);
};
void thparse_objectname(thobjectname & ds, thmbuffer * sstore, char * src, class thdataobject * psobj = NULL);
std::string thobjectname_print_full_name(const char * oname_ptr, class thsurvey * psrv, int slevel = -1);
void fprintf(FILE * fh, thobjectname & ds);
#endif
|