Welcome to Dream.In.Code
Become a C++ Expert!

Join 137,392 C++ Programmers for FREE! Get instant access to thousands of C++ experts, tutorials, code snippets, and more! There are 2,133 people online right now. Registration is fast and FREE... Join Now!




How to write this code on the class cpp file?

 
Reply to this topicStart new topic

How to write this code on the class cpp file?

beberenne
23 Oct, 2006 - 09:13 PM
Post #1

New D.I.C Head
*

Joined: 23 Oct, 2006
Posts: 6


My Contributions
Given in the header file Date.h for a class Date

const char *monthName( void ) const;

in the Date.cpp file do i write the code like this?

const char Date::*monthName(void) const
{
}
User is offlineProfile CardPM
+Quote Post

gregoryH
RE: How To Write This Code On The Class Cpp File?
24 Oct, 2006 - 12:10 AM
Post #2

D.I.C Regular
Group Icon

Joined: 4 Oct, 2006
Posts: 417


Dream Kudos: 50
My Contributions
QUOTE(beberenne @ 23 Oct, 2006 - 10:13 PM) *

Given in the header file Date.h for a class Date

const char *monthName( void ) const;

in the Date.cpp file do i write the code like this?]


Close... the return type is a char *... therefore you must keep the * near the char..

CODE
const char * Date::monthName(void) const
{
}

User is offlineProfile CardPM
+Quote Post

Reply to this topicStart new topic
Time is now: 12/5/08 02:34AM

Live C++ Help!

C++ Tutorials

Reference Sheets

C++ Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month