Home
Forums
Reviews
Guides
Newsgroups
Register
Search
Member Login:
Velocity Reviews
>
Newsgroups
>
Programming
>
C++
> privatising public member functions in derived classes
Thread Tools
privatising public member functions in derived classes
Firkraag
Guest
Posts:
n/a
11-21-2007
Hello
struct A {
~virtual A(){}
virtual void foo(){}
};
struct B : A {
private:
};
http://www.parashift.com/c++-faq-lit....html#faq-21.1
Firkraag
«
Strange performance problem in C++ program
|
Eclipse CDT not indexing #defines.
»
Thread Tools
Show Printable Version
Email this Page
Posting Rules
You
may not
post new threads
You
may not
post replies
You
may not
post attachments
You
may not
edit your posts
BB code
is
On
Smilies
are
On
[IMG]
code is
On
HTML code is
Off
Trackbacks
are
On
Pingbacks
are
On
Refbacks
are
Off
Forum Rules
Similar Threads
Thread
Thread Starter
Forum
Replies
Last Post
privatising public member functions in derived classes.
Firkraag
C++
5
11-23-2007
03:15 AM
microsoft.public.certification, microsoft.public.cert.exam.mcsa, microsoft.public.cert.exam.mcad, microsoft.public.cert.exam.mcse, microsoft.public.cert.exam.mcsd
loyola
MCSE
4
11-15-2006
02:40 AM
microsoft.public.certification, microsoft.public.cert.exam.mcsa, microsoft.public.cert.exam.mcad, microsoft.public.cert.exam.mcse, microsoft.public.cert.exam.mcsd
loyola
Microsoft Certification
3
11-14-2006
05:18 PM
microsoft.public.certification, microsoft.public.cert.exam.mcsa, microsoft.public.cert.exam.mcad, microsoft.public.cert.exam.mcse, microsoft.public.cert.exam.mcsd
realexxams@yahoo.com
Microsoft Certification
0
05-10-2006
02:35 PM
microsoft.public.dotnet.faqs,microsoft.public.dotnet.framework,microsoft.public.dotnet.framework.windowsforms,microsoft.public.dotnet.general,microsoft.public.dotnet.languages.vb
Charles A. Lackman
ASP .Net
1
12-08-2004
07:08 PM
Advertisments
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
49
50
51
52
53
54
55
56
57