/usr/include/mimetic/fieldparam.h is in libmimetic-dev 0.9.7-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /***************************************************************************
copyright : (C) 2002-2008 by Stefano Barbato
email : stefano@codesink.org
$Id: fieldparam.h,v 1.7 2008-10-07 11:06:25 tat Exp $
***************************************************************************/
#ifndef _MIMETIC_FIELD_PARAM_H_
#define _MIMETIC_FIELD_PARAM_H_
#include <string>
#include <iostream>
#include <list>
#include <mimetic/strutils.h>
namespace mimetic
{
/// Field param
struct FieldParam
{
FieldParam();
FieldParam(const std::string&);
FieldParam(const std::string&, const std::string&);
const istring& name() const;
const std::string& value() const;
void name(const std::string&);
void value(const std::string&);
friend std::ostream& operator<<(std::ostream&, const FieldParam&);
private:
istring m_name;
std::string m_value;
};
typedef std::list<FieldParam> FieldParamList;
}
#endif
|