~ubuntu-branches/ubuntu/wily/aspectc++/wily

« back to all changes in this revision

Viewing changes to Puma/gen-release/step1/inc/Puma/PipedCmd.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2005-12-23 10:49:40 UTC
  • Revision ID: james.westby@ubuntu.com-20051223104940-ig4klhoi991zs7km
Tags: upstream-0.99+1.0pre2
ImportĀ upstreamĀ versionĀ 0.99+1.0pre2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// This file is part of PUMA.
 
2
// Copyright (C) 1999-2003  The PUMA developer team.
 
3
//                                                                
 
4
// This program is free software;  you can redistribute it and/or 
 
5
// modify it under the terms of the GNU General Public License as 
 
6
// published by the Free Software Foundation; either version 2 of 
 
7
// the License, or (at your option) any later version.            
 
8
//                                                                
 
9
// This program is distributed in the hope that it will be useful,
 
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of 
 
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  
 
12
// GNU General Public License for more details.                   
 
13
//                                                                
 
14
// You should have received a copy of the GNU General Public      
 
15
// License along with this program; if not, write to the Free     
 
16
// Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
 
17
// MA  02111-1307  USA                                            
 
18
 
 
19
#ifndef __PipedCmd_h__
 
20
#define __PipedCmd_h__
 
21
 
 
22
#include <string>
 
23
#include <stdio.h>
 
24
using namespace std;
 
25
 
 
26
// This class can execute a command and gives access to the
 
27
// generated outputs.
 
28
 
 
29
namespace Puma {
 
30
 
 
31
 
 
32
class PipedCmd {
 
33
  string m_Print;
 
34
 
 
35
  void reset ();
 
36
  void readin (FILE *);
 
37
 
 
38
public:
 
39
  // Construct a PipedCmd
 
40
   PipedCmd ();
 
41
 
 
42
  // Execute the given command. The command can also include some arguments.
 
43
  int exec (const string &);
 
44
   
 
45
  // Return the size of the recorded output.
 
46
  int getStrSize () const { return m_Print.length (); }
 
47
  // Get pointer to a C like string containing the output.
 
48
  const char *getOutputStr () const { return m_Print.c_str (); }
 
49
  // Return a reference to a string object with the recored output. 
 
50
  const string &getOutput () const { return m_Print; }
 
51
};
 
52
 
 
53
 
 
54
} // namespace Puma
 
55
 
 
56
#endif /* __PipedCmd_h__ */