/usr/include/mimetic/os/stdfile.h is in libmimetic-dev 0.9.8-5.
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 37 38 39 40 41 42 43 44 45 46 47 48 | /***************************************************************************
copyright : (C) 2002-2008 by Stefano Barbato
email : stefano@codesink.org
$Id: stdfile.h,v 1.9 2008-10-07 11:06:26 tat Exp $
***************************************************************************/
#ifndef _MIMETIC_OS_STDFILE_H
#define _MIMETIC_OS_STDFILE_H
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <cstdio>
#include <string>
#include <iterator>
#include <mimetic/os/fileop.h>
#include <mimetic/os/file_iterator.h>
namespace mimetic
{
// File class
struct StdFile: public FileOp
{
typedef ifile_iterator iterator;
StdFile();
StdFile(const std::string&, int mode = O_RDONLY);
~StdFile();
operator bool() const;
void open(const std::string&, int mode = O_RDONLY);
void close();
uint read(char*, int);
iterator begin();
iterator end();
protected:
void open(int flags);
bool stat();
std::string m_fqn;
bool m_stated;
struct stat m_st;
int m_fd;
};
}
#endif
|