Sponsored Content
Top Forums Programming Controlling elaboration order in C++ programming Post 302930139 by DGPickett on Tuesday 30th of December 2014 03:30:40 PM
Old 12-30-2014
Yes, exactly -- you can make them print in debug mode, perhaps defined by an env. var, not using any objects, just C-isms.
Code:
int global_debug = -1 ; // In global space
 .
 .
 .
// top of constructor for class XXXXX
if ( global_debug < 0 ){
  if ( NULL == getenv( "DEBUG" )){
    global_debug = 0 ;
  } else {
    global_debug = 1 ;
  }
}
if ( global_debug ){
  fputs( "\nObject XXXXX Constructor start.\n", stderr );
}


Last edited by DGPickett; 12-30-2014 at 04:42 PM..
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

controlling screen display

How can I control the screen output when trying to read a large file onto the screen x number of lines at a time. I'm trying to use this is a bourne shell script. I want to display 10 lines of a file, pause the screen so that a user can read the file, and then display the next 10 lines of the file,... (6 Replies)
Discussion started by: jrdnoland1
6 Replies

2. UNIX for Dummies Questions & Answers

Controlling logfiles

I support an app that outputs alert and audit messages to one log file (vendor says they can't be separated). The script that I have written takes a copy (mv cmd) of the file to do the separation and reformatting. I have a problem that I loose records (messages are being written constantly, upto 3+... (5 Replies)
Discussion started by: nhatch
5 Replies

3. Programming

Controlling Tty For A Process

I have developed a Code to find out number and name of processes currently running in SunOS Release 5.8 Server. I have used 'prpsinfo' structure to retrieve process details. But however I am unable to decompose the controlling terminal for the processes. The member variable pr_lttydev holds... (1 Reply)
Discussion started by: S.P.Prasad
1 Replies

4. Programming

controlling terminal

What is controlling terminal in the case of daemon process? (2 Replies)
Discussion started by: Madhu Babu
2 Replies

5. Filesystems, Disks and Memory

Controlling I/O

Hi guys, Can anyone please tell me how I can control the I/O on my hardware devices in Suse Linux 8.1. I find that everytime I am reading a CD, or copying from a CD, I am unable to listen to music of watch a movie. Maybe this is intended to be like so, for the current high street technolgy... (1 Reply)
Discussion started by: bionicfysh
1 Replies

6. UNIX Desktop Questions & Answers

Controlling icon placement?

Hi, I'm using xterm and aixterm with Mwm on AIX, and having trouble controlling icon placement when minimising windows. Basically when I run an xterm or aixterm I want to be able to specify where the icon will be if minimised. The man page mentions the "#geometry Geometry" option to aixterm,... (1 Reply)
Discussion started by: cunningdavid
1 Replies

7. Shell Programming and Scripting

ps: no controlling terminal

Any one know the below means : ps: no controlling terminal I had run a script in background : nohup ./benchmark.sh & and shutdown my windows system from where i connected through SSH I am using bash: The above script perfoms various tasks of Benchmarking Repositories Today the... (3 Replies)
Discussion started by: sriram003
3 Replies

8. Shell Programming and Scripting

Controlling depth with find

I have the following script: Now they have added on a new requirement, they only want to go to a certain depth in the directories returned. How do I code it to only go say 3 directories deeper than $DIRECTORY? (12 Replies)
Discussion started by: la_womn
12 Replies

9. UNIX for Dummies Questions & Answers

Carreer:Networking Programming in Unix (C programming Language)

Hello, I am trying to learn Networking Programming in C in unix enviorment. I want to know how good it is to become a network programmer. i am crazy about Network programming but i also want to opt for the best carreer options. Anybody experienced Network Programmer, please tell me is my... (5 Replies)
Discussion started by: vibhory2j
5 Replies

10. Red Hat

"rhgb quiet" controlling the display of commands in single user mode ?"rhgb quiet" controlling the d

Why does removing "rhgb quiet" from the kernel boot parameters control whether or not the commands I enter are displayed in single user mode ? For instance, if I do not remove "rhgb quiet", when I am in single user mode, whatever command I type will not be displayed on the screen. The... (0 Replies)
Discussion started by: Hijanoqu
0 Replies
verbiste(3)															       verbiste(3)

NAME
verbiste - french conjugation system SYNOPSIS
g++ prog.cpp `pkg-config --cflags --libs libxml-2.0` -lverbiste-0.1 DESCRIPTION
Verbiste is a library that can conjugate French verbs given in the infinitive form and analyze conjugated French verbs. It is also a GNOME Panel applet and a GNOME application. There are two commands, named french-conjugator(1) and french-deconjugator(1), which make the library's functionality available from the command line and from scripts. The GNOME application should be available under the GNOME Applications menu. It can also be run from the command line by typing verbiste. Verbiste can also be used as a GNOME Panel applet. EXAMPLES
The library's source archive comes with Perl and Java example programs that call the french-conjugator(1) and french-deconjugator(1) com- mands. There are also example programs that use the C application programming interface. The library and the commands use verb and conjugation knowledge bases that are represented as XML files that are installed with the library (typically in /usr/share/verbiste-0.1). LICENSE
This program is free software; you may redistribute it under the terms of the GNU General Public License. This program has absolutely no warranty. AUTHOR
Pierre Sarrazin See the verbiste Home Page: http://sarrazip.com/dev/verbiste.html Comments are welcome. SEE ALSO
french-conjugator(1), french-deconjugator(1). BUGS
The FrenchVerbDictionary object is not completely destroyed when its destructor is called, in order to avoid the excessively long clean up time of its internal trie. Only one instance of this class should be created and it should be destroyed when the program quits. Version 0.1.x is an unstable development version. The programming interface of the library and the command-line options of the accompany- ing commands are not necessarily fixed. The documentation is not complete. The verb list and the conjugation templates have not been verified in detail. April 28th, 2012 verbiste(3)
All times are GMT -4. The time now is 02:20 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy