mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-07 04:11:51 -04:00
71 lines
2.0 KiB
C++
71 lines
2.0 KiB
C++
// Filename: withOutputFile.h
|
|
// Created by: drose (11Apr01)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef WITHOUTPUTFILE_H
|
|
#define WITHOUTPUTFILE_H
|
|
|
|
#include "pandatoolbase.h"
|
|
|
|
#include "programBase.h"
|
|
#include "filename.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : WithOutputFile
|
|
// Description : This is the bare functionality (intended to be
|
|
// inherited from along with ProgramBase or some
|
|
// derivative) for a program that might generate an
|
|
// output file.
|
|
//
|
|
// This provides the has_output_filename() and
|
|
// get_output_filename() methods.
|
|
////////////////////////////////////////////////////////////////////
|
|
class WithOutputFile {
|
|
public:
|
|
WithOutputFile(bool allow_last_param, bool allow_stdout,
|
|
bool binary_output);
|
|
virtual ~WithOutputFile();
|
|
|
|
ostream &get_output();
|
|
bool has_output_filename() const;
|
|
Filename get_output_filename() const;
|
|
|
|
protected:
|
|
INLINE void set_binary_output(bool binary_output);
|
|
|
|
bool check_last_arg(ProgramBase::Args &args, int minimum_args);
|
|
bool verify_output_file_safe() const;
|
|
|
|
protected:
|
|
bool _allow_last_param;
|
|
bool _allow_stdout;
|
|
bool _binary_output;
|
|
string _preferred_extension;
|
|
bool _got_output_filename;
|
|
Filename _output_filename;
|
|
|
|
private:
|
|
ofstream _output_stream;
|
|
ostream *_output_ptr;
|
|
};
|
|
|
|
#include "withOutputFile.I"
|
|
|
|
#endif
|
|
|
|
|