Garfield++ 5.0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
Loading...
Searching...
No Matches
Heed::RegPassivePtr Class Reference

#include <AbsPtr.h>

+ Inheritance diagram for Heed::RegPassivePtr:

Public Member Functions

 RegPassivePtr (void)
 
 RegPassivePtr (char fs_ban_del, char fs_ban_sub, char fs_ban_cop=0)
 
 RegPassivePtr (const RegPassivePtr &f)
 
RegPassivePtroperator= (const RegPassivePtr &f)
 
CountPP_ns::CountPassivePtrbook (void) const
 
void clear_pointers (void) const
 
virtual RegPassivePtrcopy () const
 
virtual ~RegPassivePtr ()
 
virtual void print (std::ostream &file, int l=1) const
 
void set_s_ban_del (char fs_ban_del)
 
char get_s_ban_del (void) const
 
void set_s_ban_sub (char fs_ban_sub)
 
char get_s_ban_sub (void) const
 
void set_s_ban_cop (char fs_ban_cop)
 
char get_s_ban_cop (void) const
 
void set_s_allow_del_at_zero_count (char fs_allow_del_at_zero_count)
 
char get_s_allow_del_at_zero_count (void) const
 
long get_total_number_of_references (void) const
 

Static Public Member Functions

static void set_s_ban_del_ignore (char fs_ban_del_ignore)
 
static char get_s_ban_del_ignore (void)
 
static void set_s_print_adr_cpp (char fs_print_adr_cpp)
 
static char get_s_print_adr_cpp (void)
 

Friends

class CountPP_ns::CountPassivePtr
 
std::ostream & operator<< (std::ostream &file, const RegPassivePtr &f)
 

Detailed Description

Definition at line 251 of file AbsPtr.h.

Constructor & Destructor Documentation

◆ RegPassivePtr() [1/3]

Heed::RegPassivePtr::RegPassivePtr ( void )
inline

Definition at line 343 of file AbsPtr.h.

344 :
345#ifdef USE_BIT_OPERA
346 control_word(0),
347#elif defined USE_BIT_FIELDS
348 conparam(),
349#else
350 s_ban_del(0),
351 s_ban_sub(0),
352 s_ban_cop(0),
353#ifdef USE_DELETE_AT_ZERO_COUNT
354 s_allow_del_at_zero_count(0),
355#endif
356#endif
357 cpp(NULL) {
358 }

Referenced by copy(), Heed::DynArr< T >::DynArr(), Heed::DynLinArr< T >::DynLinArr(), RegPassivePtr(), and RegPassivePtr().

◆ RegPassivePtr() [2/3]

Heed::RegPassivePtr::RegPassivePtr ( char fs_ban_del,
char fs_ban_sub,
char fs_ban_cop = 0 )
inline

Definition at line 360 of file AbsPtr.h.

361 :
362#else
363 inline RegPassivePtr(int fs_ban_del, int fs_ban_sub, int fs_ban_cop = 0)
364 :
365#endif
366#ifdef USE_BIT_OPERA
367 control_word(0),
368#elif defined(USE_BIT_FIELDS)
369 conparam(fs_ban_del, fs_ban_sub, fs_ban_cop),
370#else
371 s_ban_del(fs_ban_del), s_ban_sub(fs_ban_sub), s_ban_cop(fs_ban_cop),
373 s_allow_del_at_zero_count(0),
374#endif
375#endif
376 cpp(NULL) {
377#ifdef USE_BIT_OPERA
378 set_s_ban_del(fs_ban_del);
379 set_s_ban_sub(fs_ban_sub);
380 set_s_ban_cop(fs_ban_cop);
381#endif
382 }
#define USE_DELETE_AT_ZERO_COUNT
Definition AbsPtr.h:33
void set_s_ban_cop(char fs_ban_cop)
Definition AbsPtr.h:670
void set_s_ban_sub(char fs_ban_sub)
Definition AbsPtr.h:610
void set_s_ban_del(char fs_ban_del)
Definition AbsPtr.h:536

◆ RegPassivePtr() [3/3]

Heed::RegPassivePtr::RegPassivePtr ( const RegPassivePtr & f)

Definition at line 16 of file AbsPtr.cpp.

17 :
18#ifdef USE_BIT_OPERA
19 control_word(f.control_word),
20#elif defined(USE_BIT_FIELDS)
21 conparam(f.conparam),
22#else
23 s_ban_del(f.s_ban_del),
24 s_ban_sub(f.s_ban_sub),
25 s_ban_cop(f.s_ban_cop),
26#ifdef USE_DELETE_AT_ZERO_COUNT
27 s_allow_del_at_zero_count(f.s_allow_del_at_zero_count),
28#endif
29#endif
30 cpp(NULL) {
31// mcout<<"RegPassivePtr::RegPassivePtr(...) is started\n";
32#ifdef USE_BIT_OPERA
33 if (f.get_s_ban_cop() == 2) {
34#elif defined(USE_BIT_FIELDS)
35 if (f.conparam.s_ban_cop == 2) {
36#else
37 if (f.s_ban_cop == 2) {
38#endif
39 mcerr << "Error in "
40 << "RegPassivePtr::RegPassivePtr(const RegPassivePtr& f):\n"
41 << "attempt to copy object whose s_ban_cop == 2.\n";
43 }
44#ifdef USE_BIT_OPERA
45 else if (f.get_s_ban_cop() == 1 && f.cpp->get_number_of_booked() > 0) {
46#elif defined(USE_BIT_FIELDS)
47 else if (f.conparam.s_ban_cop == 1 && f.cpp->get_number_of_booked() > 0) {
48#else
49 else if (f.s_ban_cop == 1 && f.cpp->get_number_of_booked() > 0) {
50#endif
51 mcerr << "Error in "
52 << "RegPassivePtr::RegPassivePtr(const RegPassivePtr& f):\n"
53 << "attempt to copy referred object whose s_ban_cop == 1.\n"
54 << "f.cpp->get_number_of_booked()=" << f.cpp->get_number_of_booked()
55 << '\n';
57 }
58}
#define spexit(stream)
#define mcerr
Definition prstream.h:128

◆ ~RegPassivePtr()

Heed::RegPassivePtr::~RegPassivePtr ( )
virtual

Definition at line 231 of file AbsPtr.cpp.

231 {
232 // mcout<<"~RegPassivePtr(): *this="<<(*this)<<'\n';
233 if (cpp != NULL) {
234 cpp->change_rpp(NULL);
235 if (cpp->get_number_of_booked() == 0) {
236 delete cpp;
237 cpp = NULL;
238 } else {
239#ifdef USE_BIT_OPERA
240 if (s_ban_del_ignore == 0 && get_s_ban_del() == 1)
241#elif defined(USE_BIT_FIELDS)
242 if (s_ban_del_ignore == 0 && conparam.s_ban_del == 1)
243#else
244 if (s_ban_del_ignore == 0 && s_ban_del == 1)
245#endif
246 {
247 mcerr << "Error in RegPassivePtr::~RegPassivePtr() "
248 << "s_ban_del == 1, but there are pointers to this class.\n";
249 mcerr << "cpp->number_of_registered=" << cpp->get_number_of_booked()
250 << '\n';
251 s_ban_del_ignore = 1;
252 spexit(mcerr);
253 }
254 }
255 }
256}
char get_s_ban_del(void) const
Definition AbsPtr.h:564

Member Function Documentation

◆ book()

CountPP_ns::CountPassivePtr * Heed::RegPassivePtr::book ( void ) const
inline

Definition at line 391 of file AbsPtr.h.

391 {
392 if (!cpp) cpp = new CountPP_ns::CountPassivePtr(this);
393 cpp->book();
394 return cpp;
395 }
friend class CountPP_ns::CountPassivePtr
Definition AbsPtr.h:253

◆ clear_pointers()

void Heed::RegPassivePtr::clear_pointers ( void ) const
inline

Definition at line 397 of file AbsPtr.h.

397 {
398 // all pointers addressing this are cleared;
399 if (cpp) cpp->change_rpp(NULL);
400 }

◆ copy()

virtual RegPassivePtr * Heed::RegPassivePtr::copy ( ) const
inlinevirtual

Reimplemented in Heed::DynArr< T >, Heed::DynArr< D >, Heed::DynLinArr< T >, Heed::DynLinArr< D >, and Heed::DynLinArr< long >.

Definition at line 402 of file AbsPtr.h.

402{ return new RegPassivePtr(*this); }

◆ get_s_allow_del_at_zero_count()

char Heed::RegPassivePtr::get_s_allow_del_at_zero_count ( void ) const
inline

Definition at line 760 of file AbsPtr.h.

765 {
766 if ((control_word & eb_s_allow_del_at_zero_count) != 0)
767 return 1;
768 else
769 return 0;
770 }
771#elif defined(USE_BIT_FIELDS)
772 {
773 return conparam.s_allow_del_at_zero_count;
774 }
775#else
776 { return s_allow_del_at_zero_count; }

◆ get_s_ban_cop()

char Heed::RegPassivePtr::get_s_ban_cop ( void ) const
inline

Definition at line 704 of file AbsPtr.h.

709 {
710 if ((control_word & eb_s_ban_cop2) == 0) {
711 if ((control_word & eb_s_ban_cop1) == 0)
712 return 0;
713 else
714 return 1;
715 } else {
716 return 2;
717 }
718 }
719#elif defined USE_BIT_FIELDS
720 {
721 return conparam.s_ban_cop;
722 }
723#else
724 { return s_ban_cop; }

Referenced by RegPassivePtr().

◆ get_s_ban_del()

char Heed::RegPassivePtr::get_s_ban_del ( void ) const
inline

Definition at line 564 of file AbsPtr.h.

569 {
570 if ((control_word & eb_s_ban_del) != 0)
571 return 1;
572 else
573 return 0;
574 }
575#elif defined(USE_BIT_FIELDS)
576 {
577 return conparam.s_ban_del;
578 }
579#else
580 { return s_ban_del; }

◆ get_s_ban_del_ignore()

static char Heed::RegPassivePtr::get_s_ban_del_ignore ( void )
inlinestatic

Definition at line 601 of file AbsPtr.h.

605 {
606 return s_ban_del_ignore;
607 }

◆ get_s_ban_sub()

char Heed::RegPassivePtr::get_s_ban_sub ( void ) const
inline

Definition at line 644 of file AbsPtr.h.

649 {
650 if ((control_word & eb_s_ban_sub2) == 0) {
651 if ((control_word & eb_s_ban_sub1) == 0)
652 return 0;
653 else
654 return 1;
655 } else {
656 // Iprintn(mcout, (control_word & eb_s_ban_sub1) );
657 // Iprintn(mcout, (control_word & eb_s_ban_sub2) );
658 return 2;
659 }
660 }
661#elif defined(USE_BIT_FIELDS)
662 {
663 return conparam.s_ban_sub;
664 }
665#else
666 { return s_ban_sub; }

◆ get_s_print_adr_cpp()

static char Heed::RegPassivePtr::get_s_print_adr_cpp ( void )
inlinestatic

Definition at line 799 of file AbsPtr.h.

803 {
804 return s_print_adr_cpp;
805 }

◆ get_total_number_of_references()

long Heed::RegPassivePtr::get_total_number_of_references ( void ) const

Definition at line 222 of file AbsPtr.cpp.

222 {
223 if (cpp == NULL)
224 return 0;
225 else
226 return cpp->get_number_of_booked();
227}

◆ operator=()

RegPassivePtr & Heed::RegPassivePtr::operator= ( const RegPassivePtr & f)

Definition at line 60 of file AbsPtr.cpp.

60 {
61// mcout<<"RegPassivePtr::operator= is started\n";
62#ifdef USE_BIT_OPERA
63 if (f.get_s_ban_cop() == 2) {
64#elif defined(USE_BIT_FIELDS)
65 if (f.conparam.s_ban_cop == 2) {
66#else
67 if (f.s_ban_cop == 2) {
68#endif
69 mcerr << "Error in "
70 << "RegPassivePtr& RegPassivePtr::operator=(const RegPassivePtr& "
71 "f):\n"
72 << "attempt to copy object whose s_ban_cop == 2.\n";
74#ifdef USE_BIT_OPERA
75 } else if (f.get_s_ban_cop() == 1 && f.cpp->get_number_of_booked() > 0) {
76#elif defined(USE_BIT_FIELDS)
77 } else if (f.conparam.s_ban_cop == 1 && f.cpp->get_number_of_booked() > 0) {
78#else
79 } else if (f.s_ban_cop == 1 && f.cpp->get_number_of_booked() > 0) {
80#endif
81 mcerr << "Error in "
82 << "RegPassivePtr& RegPassivePtr::operator=(const "
83 "RegPassivePtr& f):\n"
84 << "attempt to copy referred object whose s_ban_cop == 1.\n"
85 << "f.cpp->get_number_of_booked()=" << f.cpp->get_number_of_booked()
86 << '\n';
88 }
89#ifdef USE_BIT_OPERA
90 set_s_ban_cop(f.get_s_ban_cop());
91#ifdef USE_DELETE_AT_ZERO_COUNT
92 set_s_allow_del_at_zero_count(f.get_s_allow_del_at_zero_count());
93#endif
94 set_s_ban_del(f.get_s_ban_del());
95 if (get_s_ban_sub() == 1)
96#elif defined(USE_BIT_FIELDS)
97 conparam.s_ban_cop = f.conparam.s_ban_cop;
98#ifdef USE_DELETE_AT_ZERO_COUNT
99 conparam.s_allow_del_at_zero_count = f.conparam.s_allow_del_at_zero_count;
100#endif
101 conparam.s_ban_del = f.conparam.s_ban_del;
102 if (conparam.s_ban_sub == 1)
103#else
104 s_ban_cop = f.s_ban_cop;
105#ifdef USE_DELETE_AT_ZERO_COUNT
106 s_allow_del_at_zero_count = f.s_allow_del_at_zero_count;
107#endif
108 s_ban_del = f.s_ban_del;
109 if (s_ban_sub == 1)
110#endif
111 {
112 if (this == &f && // self-assignment
113 cpp != NULL && cpp->get_number_of_booked() > 0) {
114 mcerr << "Error in "
115 << "RegPassivePtr& RegPassivePtr::operator=(const RegPassivePtr& "
116 "f):\n"
117 << "self-assignment, s_ban_sub == 1, but the object is addressed.\n"
118 << "This can lead to loss of pointers to copied object, not only "
119 "to this one.\n";
120 spexit(mcerr);
121 }
123 }
124#ifdef USE_BIT_OPERA
125 else if (get_s_ban_sub() == 2 && cpp != NULL &&
126 cpp->get_number_of_booked() > 0)
127#elif defined(USE_BIT_FIELDS)
128 else if (conparam.s_ban_sub == 2 && cpp != NULL &&
129 cpp->get_number_of_booked() > 0)
130#else
131 else if (s_ban_sub == 2 && cpp != NULL && cpp->get_number_of_booked() > 0)
132#endif
133 {
134 mcerr << "Error in "
135 << "RegPassivePtr& RegPassivePtr::operator=(const RegPassivePtr& "
136 "f):\n"
137 << "s_ban_sub == 2, but the object is addressed.\n";
138 spexit(mcerr);
139 }
140#ifdef USE_BIT_OPERA
141 set_s_ban_sub(f.get_s_ban_sub());
142#elif defined(USE_BIT_FIELDS)
143 conparam.s_ban_sub = f.conparam.s_ban_sub;
144#else
145 s_ban_sub = f.s_ban_sub;
146#endif
147 return *this;
148}
void clear_pointers(void) const
Definition AbsPtr.h:397
void set_s_allow_del_at_zero_count(char fs_allow_del_at_zero_count)
Definition AbsPtr.h:730
char get_s_ban_sub(void) const
Definition AbsPtr.h:644

◆ print()

void Heed::RegPassivePtr::print ( std::ostream & file,
int l = 1 ) const
virtual

Definition at line 152 of file AbsPtr.cpp.

152 {
153 if (l > 0) file << (*this);
154}

Referenced by Heed::print_adr_DynLinArr(), Heed::print_DynLinArr(), and Heed::print_DynLinArr().

◆ set_s_allow_del_at_zero_count()

void Heed::RegPassivePtr::set_s_allow_del_at_zero_count ( char fs_allow_del_at_zero_count)
inline

Definition at line 730 of file AbsPtr.h.

734 {
735#ifdef USE_BIT_OPERA
736 if (fs_allow_del_at_zero_count == 0)
737 clear_bit(control_word, eb_s_allow_del_at_zero_count);
738 else if (fs_allow_del_at_zero_count == 1)
739 rise_bit(control_word, eb_s_allow_del_at_zero_count);
740#else
741 if (fs_allow_del_at_zero_count == 0 || fs_allow_del_at_zero_count == 1) {
742#ifdef USE_BIT_FIELDS
743 conparam.s_allow_del_at_zero_count = fs_allow_del_at_zero_count;
744#else
745 s_allow_del_at_zero_count = fs_allow_del_at_zero_count;
746#endif
747 }
748#endif
749 else {
750 mcerr << "ERROR in inline void set_s_allow_del_at_zero_count(int "
751 "fs_allow_del_at_zero_count):\n";
752 mcerr << "s_allow_del_at_zero_count is outside limits, "
753 "s_allow_del_at_zero_count=" << int(fs_allow_del_at_zero_count)
754 << '\n';
755 spexit(mcerr);
756 }
757 }

◆ set_s_ban_cop()

void Heed::RegPassivePtr::set_s_ban_cop ( char fs_ban_cop)
inline

Definition at line 670 of file AbsPtr.h.

674 {
675#ifdef USE_BIT_OPERA
676 if (fs_ban_cop == 0) {
677 clear_bit(control_word, eb_s_ban_cop1);
678 clear_bit(control_word, eb_s_ban_cop2);
679 } else if (fs_ban_cop == 1) {
680 rise_bit(control_word, eb_s_ban_cop1);
681 clear_bit(control_word, eb_s_ban_cop2);
682 } else if (fs_ban_cop == 2) {
683 clear_bit(control_word, eb_s_ban_cop1);
684 rise_bit(control_word, eb_s_ban_cop2);
685 }
686#else
687 if (fs_ban_cop >= 0 && fs_ban_cop <= 2) {
688#ifdef USE_BIT_FIELDS
689 conparam.s_ban_cop = fs_ban_cop;
690#else
691 s_ban_cop = fs_ban_cop;
692#endif
693 }
694#endif
695 else {
696 mcerr << "ERROR in inline void set_s_ban_cop(int fs_ban_cop):\n";
697 mcerr << "s_ban_cop is outside limits, s_ban_cop=" << int(fs_ban_cop)
698 << '\n';
699 spexit(mcerr);
700 }
701 }

Referenced by RegPassivePtr().

◆ set_s_ban_del()

void Heed::RegPassivePtr::set_s_ban_del ( char fs_ban_del)
inline

Definition at line 536 of file AbsPtr.h.

540 {
541#ifdef USE_BIT_OPERA
542 if (fs_ban_del == 0)
543 clear_bit(control_word, eb_s_ban_del);
544 else if (fs_ban_del == 1)
545 rise_bit(control_word, eb_s_ban_del);
546#else
547 if (fs_ban_del == 0 || fs_ban_del == 1) {
548#ifdef USE_BIT_FIELDS
549 conparam.s_ban_del = fs_ban_del;
550#else
551 s_ban_del = fs_ban_del;
552#endif
553 }
554#endif
555 else {
556 mcerr << "ERROR in inline void set_s_ban_del(int fs_ban_del):\n";
557 mcerr << "s_ban_del is outside limits, s_ban_del=" << int(fs_ban_del)
558 << '\n';
559 spexit(mcerr);
560 }
561 }

Referenced by RegPassivePtr().

◆ set_s_ban_del_ignore()

static void Heed::RegPassivePtr::set_s_ban_del_ignore ( char fs_ban_del_ignore)
inlinestatic

Definition at line 584 of file AbsPtr.h.

588 {
589 if (fs_ban_del_ignore == 0 || fs_ban_del_ignore == 1) {
590 s_ban_del_ignore = fs_ban_del_ignore;
591 } else {
592 mcerr << "ERROR in inline void set_s_ban_del_ignore(int "
593 "fs_ban_del_ignore ):\n";
594 mcerr << "s_ban_del_ignore is outside limits, s_ban_del_ignore="
595 << int(fs_ban_del_ignore) << '\n';
596 spexit(mcerr);
597 }
598 }

◆ set_s_ban_sub()

void Heed::RegPassivePtr::set_s_ban_sub ( char fs_ban_sub)
inline

Definition at line 610 of file AbsPtr.h.

614 {
615#ifdef USE_BIT_OPERA
616 if (fs_ban_sub == 0) {
617 clear_bit(control_word, eb_s_ban_sub1);
618 clear_bit(control_word, eb_s_ban_sub2);
619 } else if (fs_ban_sub == 1) {
620 rise_bit(control_word, eb_s_ban_sub1);
621 clear_bit(control_word, eb_s_ban_sub2);
622 } else if (fs_ban_sub == 2) {
623 clear_bit(control_word, eb_s_ban_sub1);
624 rise_bit(control_word, eb_s_ban_sub2);
625 }
626#else
627 if (fs_ban_sub >= 0 && fs_ban_sub <= 2) {
628#ifdef USE_BIT_FIELDS
629 conparam.s_ban_sub = fs_ban_sub;
630#else
631 s_ban_sub = fs_ban_sub;
632#endif
633 }
634#endif
635 else {
636 mcerr << "ERROR in inline void set_s_ban_sub(int fs_ban_sub):\n";
637 mcerr << "s_ban_sub is outside limits, s_ban_sub=" << int(fs_ban_sub)
638 << '\n';
639 spexit(mcerr);
640 }
641 }

Referenced by RegPassivePtr().

◆ set_s_print_adr_cpp()

static void Heed::RegPassivePtr::set_s_print_adr_cpp ( char fs_print_adr_cpp)
inlinestatic

Definition at line 782 of file AbsPtr.h.

786 {
787 if (fs_print_adr_cpp == 0 || fs_print_adr_cpp == 1) {
788 s_print_adr_cpp = fs_print_adr_cpp;
789 } else {
790 mcerr << "ERROR in inline void set_s_print_adr_cpp(int fs_print_adr_cpp "
791 "):\n";
792 mcerr << "s_print_adr_cpp is outside limits, s_print_adr_cpp="
793 << int(fs_print_adr_cpp) << '\n';
794 spexit(mcerr);
795 }
796 }

Friends And Related Symbol Documentation

◆ CountPP_ns::CountPassivePtr

friend class CountPP_ns::CountPassivePtr
friend

Definition at line 253 of file AbsPtr.h.

◆ operator<<

std::ostream & operator<< ( std::ostream & file,
const RegPassivePtr & f )
friend

Definition at line 156 of file AbsPtr.cpp.

156 {
157#ifdef USE_BIT_OPERA
158#ifdef USE_CHAR_GETSETTERS_PARAMETERS
159 Ifile << "RegPassivePtr<X>: s_ban_del/sub/cop=" << int(f.get_s_ban_del())
160 << "/" << int(f.get_s_ban_sub()) << "/" << int(f.get_s_ban_cop());
161#else
162 Ifile << "RegPassivePtr<X>: s_ban_del/sub/cop=" << f.get_s_ban_del() << "/"
163 << f.get_s_ban_sub() << "/" << f.get_s_ban_cop();
164#endif
165#elif defined USE_BIT_FIELDS
166 Ifile << "RegPassivePtr<X>: s_ban_del/sub/cop=" << f.conparam.s_ban_del << "/"
167 << f.conparam.s_ban_sub << "/" << f.conparam.s_ban_cop;
168#else
169#ifdef USE_CHAR_CONTROL_VARIABLES
170 Ifile << "RegPassivePtr<X>: s_ban_del/sub/cop=" << int(f.s_ban_del) << "/"
171 << int(f.s_ban_sub) << "/" << int(f.s_ban_cop);
172#else
173 Ifile << "RegPassivePtr<X>: s_ban_del/sub/cop=" << f.s_ban_del << "/"
174 << f.s_ban_sub << "/" << f.s_ban_cop;
175#endif
176#endif
177 /*
178 Ifile<<"RegPassivePtr<X>: s_ban_del="<<f.s_ban_del
179 <<" s_ban_sub="<<f.s_ban_sub
180 <<" s_ban_cop="<<f.s_ban_cop;
181 */
182 if (RegPassivePtr::s_print_adr_cpp == 0) {
183 if (f.cpp == NULL) {
184 file << " cpp=NULL\n";
185 } else {
186 file << " cpp!=NULL\n";
187 }
188 } else {
189 file << " cpp=" << f.cpp << '\n';
190 }
191 if (f.cpp != NULL) {
192 indn.n += 2;
193 Ifile << "cpp->number_of_registered=" << f.cpp->get_number_of_booked()
194 << '\n';
195 indn.n -= 2;
196 }
197#ifdef USE_DELETE_AT_ZERO_COUNT
198 indn.n += 2;
199#ifdef USE_BIT_OPERA
200 Ifile << "s_allow_del_at_zero_count="
201#ifdef USE_CHAR_GETSETTERS_PARAMETERS
202 << int(f.get_s_allow_del_at_zero_count()) << '\n';
203#else
204 << f.get_s_allow_del_at_zero_count() << '\n';
205#endif
206#elif defined(USE_BIT_FIELDS)
207 Ifile << "s_allow_del_at_zero_count=" << f.conparam.s_allow_del_at_zero_count
208 << '\n';
209#else
210#ifdef USE_CHAR_CONTROL_VARIABLES
211 Ifile << "s_allow_del_at_zero_count=" << int(f.s_allow_del_at_zero_count)
212 << '\n';
213#else
214 Ifile << "s_allow_del_at_zero_count=" << f.s_allow_del_at_zero_count << '\n';
215#endif
216#endif
217 indn.n -= 2;
218#endif
219 return file;
220}
indentation indn
Definition prstream.cpp:15
#define Ifile
Definition prstream.h:195

The documentation for this class was generated from the following files: