Example
#{example}"); ipb.editor_values.get('templates')['togglesource'] = new Template(""); ipb.editor_values.get('templates')['toolbar'] = new Template(""); ipb.editor_values.get('templates')['button'] = new Template("
Emoticons
"); // Add smilies into the mix ipb.editor_values.set( 'show_emoticon_link', false ); ipb.editor_values.set( 'bbcodes', $H({"snapback":{"id":"1","title":"Post Snap Back","desc":"This tag displays a little linked image which links back to a post - used when quoting posts from the board. Opens in same window by default.","tag":"snapback","useoption":"0","example":"[snapback]100[/snapback]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"topic":{"id":"5","title":"Topic Link","desc":"This tag provides an easy way to link to a topic","tag":"topic","useoption":"1","example":"[topic=1]Click me![/topic]","switch_option":"0","menu_option_text":"Enter the topic ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"post":{"id":"6","title":"Post Link","desc":"This tag provides an easy way to link to a post.","tag":"post","useoption":"1","example":"[post=1]Click me![/post]","switch_option":"0","menu_option_text":"Enter the Post ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"spoiler":{"id":"7","title":"Spoiler","desc":"Spoiler tag","tag":"spoiler","useoption":"0","example":"[spoiler]Some hidden text[/spoiler]","switch_option":"0","menu_option_text":"","menu_content_text":"Enter the text to be masked","single_tag":"0","optional_option":"0","image":""},"acronym":{"id":"8","title":"Acronym","desc":"Allows you to make an acronym that will display a description when moused over","tag":"acronym","useoption":"1","example":"[acronym='Laugh Out Loud']lol[/acronym]","switch_option":"0","menu_option_text":"Enter the description for this acronym (EG: Laugh Out Loud)","menu_content_text":"Enter the acronym (EG: lol)","single_tag":"0","optional_option":"0","image":""},"hr":{"id":"12","title":"Horizontal Rule","desc":"Adds a horizontal rule to separate text","tag":"hr","useoption":"0","example":"[hr]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"1","optional_option":"0","image":""},"php":{"id":"14","title":"PHP Code","desc":"Allows you to enter PHP code into a formatted/highlighted syntax box","tag":"php","useoption":"0","example":"[php]$variable = true;\n\nprint_r($variable);[/php]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"html":{"id":"15","title":"HTML Code","desc":"Allows you to enter formatted/syntax-highlighted HTML code","tag":"html","useoption":"0","example":"[html]\n \n[/html]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"sql":{"id":"16","title":"SQL Code","desc":"Allows you to enter formatted/syntax-highlighted SQL code","tag":"sql","useoption":"0","example":"[sql]SELECT p.*, t.* FROM posts p LEFT JOIN topics t ON t.tid=p.topic_id WHERE t.tid=7[/sql]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"xml":{"id":"17","title":"XML Code","desc":"Allows you to enter formatted/syntax-highlighted XML code","tag":"xml","useoption":"0","example":"[xml]5 Replies - 43 Views - Last Post: Today, 07:49 PM
#1
Reputation: 3
- Posts: 126
- Joined: 29-May 12
Posted Today, 06:00 PM
Can someone help me with the printNumericForm function? I need it to print the date in numeric form MM/DD/YYYY to cout (e.g. 02/14/2000). I'm not sure if I call each method that returns the month, day, and year.#include "Date.h" #include <string> #include <iostream> using namespace std; Date::Date() { _day = 1; _month = 1; _year = 2000; } Date::Date(int month, int day, int year) { if(month < 1 || month > 12) { month = 1; } if(day < 1 || day > 31) { day = 1; } if(year < 1900) { year = 1900; } _month = month; _day = day; _year = year; } int Date::getDay() { return _day; } int Date::getMonth() { return _month; } int Date::getYear() { return _year; } string Date::getMonthName() { if(_month = 1) { monthName = "January"; } if(_month = 2) { monthName = "February"; } if(_month = 3) { monthName = "March"; } if(_month = 4) { monthName = "April"; } if(_month = 5) { monthName = "May"; } if(_month = 6) { monthName = "June"; } if(_month = 7) { monthName = "July"; } if(_month = 8) { monthName = "August"; } if(_month = 9) { monthName = "September"; } if(_month = 10) { monthName = "October"; } if(_month = 11) { monthName = "November"; } if(_month = 12) { monthName = "December"; } return monthName; } void printNumericForm() { std::cout << getMonth() + "/" + _day + "/" + _year; } Date::~Date(void) { }
Is This A Good Question/Topic? 0
Replies To: print function
#2
Reputation: 3057
- Posts: 9,302
- Joined: 25-December 09
Re: print function
Posted Today, 06:43 PM
So what is wrong with your code? Does it compile without errors or warnings? Does it produce the desired results? If not what is is producing?Jim
#3
Reputation: 3
- Posts: 126
- Joined: 29-May 12
Re: print function
Posted Today, 07:24 PM
No I can't run it because the printNumericForm method has errors. That's what I'm trying to get help with. I'm not sure if I call the get methods.
#4
Reputation: 1929
- Posts: 5,757
- Joined: 05-May 12
Re: print function
Posted Today, 07:29 PM
What error are you getting?Stop and think. This is not C# or PHP, you can't just add integers to strings.
#5
Reputation: 3
- Posts: 126
- Joined: 29-May 12
Re: print function
Posted Today, 07:46 PM
It's saying the identifiers are undefined. I tried the getMonth() method and just tried the variables for day and year because I wasn't sure what the correct way to do it. All three say the same thing though so I'm guessing neither is correct. So I'm trying to get help with printing the date variables. I think it would make sense to use the get methods, otherwise what's the point of having them.
#6
Reputation: 3057
- Posts: 9,302
- Joined: 25-December 09
Re: print function
Posted Today, 07:49 PM
Since this print function is not part of the class you need to call the public member functions you can't access the private member variables from outside the class.If you get compile errors post the complete error messages exactly as they appear in your development environment. These messages have important information embedded within them to aid in locating and fixing the errors.
Jim
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/321700-print-function/
breaking bad breaking bad food network star British Open 2012 bane Aurora Colorado Rajesh Khanna
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.