8 More Discussions You Might Find Interesting
1. Programming
I have the following template codes but some normal functions too and want
to group them together.
I usually put the implementation of templates in an .ipp file. What would be a good scheme for the normal functions. Put their implementations in a .cpp file, or leave them in the .ipp file?
... (3 Replies)
Discussion started by: kristinu
3 Replies
2. UNIX for Advanced & Expert Users
Hi all, for a while now I've been working on a linux distro and I'm a couple of tweaks away from it to be perfected so if any experts want to help me out please message me.
Thanks in advance.
(I know I've posted a similar thread on the same topic but it was closed due to an unhelpful title... (0 Replies)
Discussion started by: allk
0 Replies
3. Programming
I have some C++ code and want to have the class declarations in a .h file and the implementation in the .cpp file.
It seems however that for templates everything need to be put in the header (.h) file and will have problems if I try to separate the code to a .cpp file.
Is this correct? Is... (1 Reply)
Discussion started by: kristinu
1 Replies
4. Solaris
Hello life savers,
I'm having trouble compiling a specific program. The program was originally written for gcc and was compiled successfully under it. When trying to compile under Solaris 11, I get this error:
"Hashtable.h", line 170: Error: Could not find a match for hash needed in... (2 Replies)
Discussion started by: yp515
2 Replies
5. Shell Programming and Scripting
I am trying to write a script that would retrieve specific information from a template. I have been trying to no avail for the longest. This is what I wrote and it's not working.
cat filename | while read F5 F6
do
if ]
then
echo
$F5 $F6
fi
done
Here is the template (filename)
CN ... (7 Replies)
Discussion started by: Ernst
7 Replies
6. Post Here to Contact Site Administrators and Moderators
Hello,
Anybody in here has any idea where I can get a template like this one for vBulletin. I have actually got my board but it just doesn't look good in the template that I have! Thanks anyway!
him (2 Replies)
Discussion started by: him
2 Replies
7. Programming
Are there any web site templates on CGI that allow like this forum software user registration and profiles. I dont need forum software i just need to register and keep profiles of my users on my site. Any suggestions?
:confused:
Thank you all. (1 Reply)
Discussion started by: solvman
1 Replies
8. Programming
what we have:
class TClass {
public:
TClass();
};
template<class T> class FClass<T>: public T {
public:
FClass();
};
TClass::TClass() {
// some code
}
template<class T> FClass<T>::FClass : T() {
// some code
}
int main (int argc,char* argv) { (3 Replies)
Discussion started by: Marhinado John
3 Replies
Math::Symbolic::Custom::Base(3pm) User Contributed Perl Documentation Math::Symbolic::Custom::Base(3pm)
NAME
Math::Symbolic::Custom::Base - Base class for tree tests and transformations
SYNOPSIS
# Extending the Math::Symbolic::Custom class:
package Math::Symbolic::Custom::MyTransformations;
use Math::Symbolic::Custom::Base;
BEGIN {*import = &Math::Symbolic::Custom::Base::aggregate_import}
our $Aggregate_Export = [qw/apply_transformation1 .../];
sub apply_transformation1 {
# ...
}
DESCRIPTION
This is a base class for your extensions to the Math::Symbolic::Custom class.
To extend the class, just use the following template for your custom class:
package Math::Symbolic::Custom::MyTransformations;
use Math::Symbolic::Custom::Base;
BEGIN {*import = &Math::Symbolic::Custom::Base::aggregate_import}
our $Aggregate_Export = [...]; # exported subroutines listed here.
# Now implement the subroutines.
# Exported subroutine names must start with 'apply_', 'mod_',
# 'is_', 'test_', 'contains_', or 'to_'
# ...
1;
EXPORT
Uses a custom exporter implementation to export certain routines from the invoking namespace to the Math::Symbolic::Custom namespace.
But... Nevermind.
SUBROUTINES
aggregate_import
aggregate_import() is the only public subroutine defined by Math::Symbolic::Custom::Base and should only be called in BEGIN blocks like the
one shown in the SYNOPSIS above.
AUTHOR
Please send feedback, bug reports, and support requests to the Math::Symbolic support mailing list: math-symbolic-support at lists dot
sourceforge dot net. Please consider letting us know how you use Math::Symbolic. Thank you.
If you're interested in helping with the development or extending the module's functionality, please contact the developers' mailing list:
math-symbolic-develop at lists dot sourceforge dot net.
List of contributors:
Steffen Mueller, symbolic-module at steffen-mueller dot net
Stray Toaster, mwk at users dot sourceforge dot net
Oliver Ebenhoeh
SEE ALSO
New versions of this module can be found on http://steffen-mueller.net or CPAN. The module development takes place on Sourceforge at
http://sourceforge.net/projects/math-symbolic/
Math::Symbolic
perl v5.10.1 2011-01-01 Math::Symbolic::Custom::Base(3pm)