Sponsored Content
Contact Us Forum Support Area for Unregistered Users & Account Problems I am not able to register in the forums Post 303003075 by RudiC on Thursday 7th of September 2017 10:56:36 AM
Old 09-07-2017
Any error messages? Other evidence?
 

8 More Discussions You Might Find Interesting

1. Forum Support Area for Unregistered Users & Account Problems

Can't register

I tried registering, but no matter what email address I provide, it says not a valid address and not the same in confirm. I tried many times, but no go. I thought I had already registered as Sully but even that didn't like my email address for password info. Of course, that could be someone else... (2 Replies)
Discussion started by: Not registered
2 Replies

2. Forum Support Area for Unregistered Users & Account Problems

Cant register

Registration denied. Sorry, The UNIX and Linux Forums runs an active policy of not allowing spammers. Please contact us via by posting in this forum if you believe this is in error What's with this? Tried 2 email accounts in case your forum blocks either. (1 Reply)
Discussion started by: Diagonal
1 Replies

3. Forum Support Area for Unregistered Users & Account Problems

I can't register

Hello admin, I come from Vietnam, it's in blocked country list. Can you help me to register I want to register with following information: Username: bojankikrick Email: <removed> Thanks very much! (1 Reply)
Discussion started by: Unregistered
1 Replies

4. Forum Support Area for Unregistered Users & Account Problems

I can't register

hi,admin: i come from china,my country is in the blocked list.i want to register a account,can you help me? infomation: username: zhengzfand email:<removed> (1 Reply)
Discussion started by: Unregistered
1 Replies

5. Forum Support Area for Unregistered Users & Account Problems

Can't register

I am in China. China is in the blocked country list. I can't register. And I don't have a static ip. Can u help me to fix it. I want to register with following information: Username:liuchengzhang email:<removed> Thanks! (1 Reply)
Discussion started by: liuchengzhang
1 Replies

6. Forum Support Area for Unregistered Users & Account Problems

Cannot able to Register!

Hi Admin, I am unable to register . Request you to help me in getting my registration done. Name: Raghavendra Kulkarni Mail id : <removed> Thanking you in advance for your support. (1 Reply)
Discussion started by: Unregistered
1 Replies

7. Forum Support Area for Unregistered Users & Account Problems

Not able to register

Hi Admin, Currently, i am not able to register in this site. Kindly let me know what need to done. Thanks, ramesh (1 Reply)
Discussion started by: Unregistered
1 Replies

8. Forum Support Area for Unregistered Users & Account Problems

I can not register

I want to register as "nezabudka", but I can't and I have a dynamic ip address. My country is not in the list of restrictions. I'm alive, I'm not a bot ))) (3 Replies)
Discussion started by: nezabudka
3 Replies
SWISS::BaseClass(3pm)					User Contributed Perl Documentation				     SWISS::BaseClass(3pm)

NAME
SWISS::BaseClass DESCRIPTION
This class is designed to impliment many of the properties that you expect in inheritance. All the housekeeping functions are defined in this module. See the notes on use for a description of how to make use of it. Functions new Returns a new SWISS::BaseClass object. rebless Converts a base class into your class! Call as $self->rebless($class) where $self is a base class object. It returns $self, reblessed, with the correct member variables. initialize Override this in each derived class to provide class specific initialization. For example, initialize may put arrays into member variables that need them. You must provide an initialize function. reformat Some line objects are implementing "lazy writing". This means that on writing an entry, they are only reformatted if they have been modified. The method reformat forces an object to be reformatted even if its content has not been modified. This may be useful e.g. to make sure the current formatting rules are applied. setEvidenceTags @array Sets the evidence tags of the object to the list passed in @array. addEvidenceTag string Adds the evidence tag to the object. deleteEvidenceTag string Deletes the evidence tag from the object. hasEvidenceTag string returns true if the object has the evidence tag. getEvidenceTags returns the array of evidence tags of the object Check4Clashes This function checks your classes member variable list for clashes with any class that it inherits from (any class that can(_containsFields) returns true on!). If it detects that in any base class that any data members have been already defined, it dies with a listing of the variables already used. It stops searching a root of an inheritance hierachy when it can find no baseclasses that support _containsFields. It will find all clashes in an entire inheritance tree. So in the inheritance hierachy of SWISS::BaseClass -> A -> B - > E SWISS::BaseClass -> C -> D -/ where E is the most derived class, if E contains names that clash with A members and names that clash with B members, both the A and B member clashes will be reported. If there were clashes with B and C, say, then again, all of the clashes would be reported. _containsFields This function is responsible for comparing a classes fields with the set in the calling package. This implimentation will work for cases where all of the classes that contribute fields are derived from SWISS::BaseClass. You may wish to make your own class fit this interface, so what follows is an interface API. _containsFields assumes that the first argument is the package that it is being called in. The following arguments are taken to be a list of fields which to check are not found in members of the current package. It should return either "undef" or a reference to an array of name clashes in the format "package::variable". It should call it's self for each parental class that supports this function. So it would look something like _containsFields { my $class = shift; my @toCheck = @_; foreach @toCheck { check that they are not in me. If they are, add them to the list of clashes to return. } add all base class clashes to your list of clashes if there were name clashes return a reference to them otherwise return undef } equal If two objects are equal, it returns true. Warning: This funktion compares two objects using a simple dump in Perl format, see Data::Dumper module. The comparison also takes private variables into account. Therefore: If the method 'equal' returns true, the objects are guaranteed to be equal, but it might return false although the two objects are equal in they public attributes. copy Returns a "deep copy" of the object. A skeletal derived class package myDerived; use vars qw ( @ISA %fields ); BEGIN { @ISA = ('SWISS::BaseClass'); %fields = ( 'i' => 1, 'hash' => undef ); myDerived->check4Clashes(); } sub new { print "myDerived::new(@_) "; my $class = shift; my $self = new SWISS::BaseClass; $self->rebless ($class); return $self; } sub initialize { my $self = shift; $self->{'hash'} = {}; } A class derived from myDerived would just substitute the name myDerived for SWISS::BaseClass. Hey presto - all sorted! perl v5.10.1 2006-01-26 SWISS::BaseClass(3pm)
All times are GMT -4. The time now is 12:59 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy