This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: can i use events in C++?
- From: Jonathan Wakely <jwakely dot gcc at gmail dot com>
- To: joaquim <cambalinho_83 at hotmail dot com>
- Cc: "libstdc++" <libstdc++ at gcc dot gnu dot org>
- Date: Mon, 28 Apr 2014 19:53:22 +0100
- Subject: Re: can i use events in C++?
- Authentication-results: sourceware.org; auth=none
- References: <1398632030634-1029575 dot post at n5 dot nabble dot com> <CAH6eHdSOf0cTew+RNyx9jds89sjwc--Qwz7biMp8bBDUPDupbA at mail dot gmail dot com> <1398710982932-1029856 dot post at n5 dot nabble dot com>
On 28 April 2014 19:49, joaquim wrote:
>
>
> Jonathan Wakely-4 wrote
>> On 27 April 2014 21:53, joaquim wrote:
>>> i'm trying do 1 thing with C++ that it's kill me :(
>>> how can i create a class derived from other, and change the functions
>>> outside the class without re-declare them?
>>> (for use '::' ouside the main function in these way: void
>>> classname::functionname(){//somthing})
>>
>> I don't know what you're trying to do, but this isn't the right mailing
>> list.
>
>
> i'm 100% new in these forum....
> Moderator: please change the mailing list, if you can.
There is no moderator, you just need to send mails to the right mailing list.
Your question is not about libstdc++ so is off-topic here. It's not
even about GCC, so is off-topic on any GCC lists. Try a general C++
programming forum, or somewhere like StackOverflow.com, or a C++
channel on IRC.
What you're trying to do is not possible, you can't define a function
that you haven't declared.