2
votes
6answers
49 views

way of defining class in a namespace

I defined a class in a namespace in a header as follows #ifndef _c1_ #define _c1_ namespace classspace { class Aclass; } class Aclass { //body }; #endif _c1_ I added this header to ...
0
votes
3answers
55 views

Do class members need to be prefixed with `class::` in class definitions?

When defining a class cls, is it necessary (or good practice) to prefix the class name cls:: to members when using them within cls's own definition, or is it done implicitly? E.g. class cls { int ...
0
votes
1answer
81 views

C++ friend class with same name in different namespaces

I have two classes with the same name in different namespaces. I cannot modify the names of the classes. I want to add a method to one of the class, but I'm not allowed to add this as a public method. ...
0
votes
1answer
54 views

XAML adding namespace for converters class

I'm getting "The name xxx does not exist in yyy" all the time. I don't understand why, i think i tried all possible combinations. All of my cs file, including main window are in ...
0
votes
0answers
12 views

Convention and namespace for non-entity classes

I'm working with the MVC design pattern and entity frameworks in a project. In some cases when I want to return certain columns of the table, I do it through classes that I generated. The problem is ...
1
vote
2answers
36 views

Is it possible to access a class outside package from other package?

I have a class like this package test{ class Test{} } class TestInnerClass{} I can access the TestInnerClass from Test class but I need to access the TestInnerClass(as class, not its instance) ...
3
votes
1answer
106 views

Can I avoid using the class name in the .cpp file if I declare a namespace in the header? [duplicate]

In C++, all I want to do is declare a DisplayInfo class in a .h file, and then in the .cpp file, not have to type the first DisplayInfo::DisplayInfo() and every function definition. Sadly, I've ...
2
votes
2answers
131 views

How to automatic load files needed by a namespace? (new title)

I have two files as described below: Path: index.php <?php // Composer autload require_once 'vendor/autoload.php'; //The commented code below works: //$loader = new Twig_Loader_String(); //$twig ...
0
votes
1answer
20 views

How to access a class in a different namespace from another non namespaced class

I have a class, that doesn't have a namespace.... I have another class that does have a name space... If I try to access the namespaced class from the non namespace, it can't find it. How do I tell my ...
0
votes
0answers
37 views

Possibility to get all namespaces and classes of a project [duplicate]

I am quite new with C#(Visual Studio) and I hope I am asking a logical question: is that possible and how to get the information with all used namespaces and classes from a C# project? Thanks in ...
1
vote
2answers
105 views

Namespace vs Class Declaration

I'm new to C# and I can't seem to find any info on this so I will ask it here. Do classes in namespaces have to ever be declared? using System; public class myprogram { void main() { ...
0
votes
1answer
32 views

Symfonys Autoloader - Implement Parent Namespaces

I am using Symfonys Autoloader for a project having the following folder/class structure: App +- Package1 | +- Package2 +- Class1.php | - Interface1.php How do i implement a class from a parent ...
1
vote
1answer
83 views

How to pass on argparse argument to function as kwargs?

I have a class defined as follows class M(object): def __init__(self, **kwargs): ...do_something and I have the result of argparse.parse_args(), for example: > args = parse_args() ...
1
vote
2answers
55 views

What is the correct way to “predefine” and use namespaces and std::shared_ptr?

I have been having a hard time trying to find anything similar to this question, so instead I will ask here. I have a project with a dozen or so source/header files. The main problem I am having is ...
0
votes
1answer
269 views

'namespace' but is used like a 'type'

This is my program the class uses it is called Time2 I have the reference added to TimeTest I keep getting the Error 'Time2' is a 'namespace' but is used like a 'type' Could someone please tell me ...
1
vote
3answers
70 views

Encapsulating Class Definitions in JavaScript for Cleaner Namespace

I'm creating a quiz interaction, and after a few days of research I'm trying to determine the best way to declare my objects. There's a master anonymous function (which could be called Quiz, but there ...
0
votes
2answers
56 views

Fatal Error RecursiveIteratorIterator not found

As the title says, when I instantiate a class I get this message : Fatal error: Class 'Envato\RecursiveIteratorIterator' not found in C:\Users\rgr\Apache\htdocs\Roland Groza [ 3.0 ...
0
votes
2answers
82 views

C++ namespace issues with third party library and same name classes

I defined a Vector2 class in my project class Vector2 { public: Vector2(); ~Vector2(); protected: float mX; float mY; } I started using a library called SFML Amongst other things, ...
1
vote
3answers
363 views

using namespace std; in a header file

So, I have the following in a specification file #include <string> #include <fstream> using namespace std: class MyStuff { private: string name; fstream file; // other ...
3
votes
3answers
134 views

Class VERSUS namespace, OR class AND namespace? [closed]

Both Class and Namespace? This question is about a pattern that I am seeing myself use more and more: Having both a class and a namespace for related concepts. I think this is motivated mainly by ...
3
votes
3answers
83 views

Python: possible to call static method from within class without qualifying the name

This is annoying: class MyClass: @staticmethod def foo(): print "hi" @staticmethod def bar(): MyClass.foo() Is there a way to make this work without naming MyClass ...
0
votes
1answer
76 views

Instantiate an object into a class with namespace

I don't know how to explain it, but I will do my best. Ok, I have these three files: Theme.php path: /shared/models/Theme.php class: Theme namespace: namespace models; Custom.php path: ...
0
votes
1answer
73 views

Namespaces within a Python Class

I have this: class MyClass: """A simple example class""" i = 12345 def f(self): print i # self.i will work just fine return 'hello world' When I do: ...
-4
votes
2answers
157 views

I cannot access class inside same namespace

I am trying to access class inside same namespage but i cannot access instance of class. namespace WebProj.Controller { public class DataLayer { public string ConnString { get; set; } ...
2
votes
2answers
43 views

How to use namespaces when implementing methods?

I have a class declaration in a .hpp line enclosed in a named namespace: namespace mylib { class MyClass { public: MyClass(); } } I plan to implement the class' ...
0
votes
4answers
79 views

Why does Python treat lists and integers differently in Class namespace?

These two class definitions are structured identically, except in the weird() class definition the attribute 'd' is a list, and in the normal() class definition its an int. I dont understand why the ...
1
vote
1answer
43 views

Using a class as a namespace for the entire file

When you want to use module A as a namespace to work within for the entire file, you can just put: include A and whatever follows will be within A. Is there a way to do a similar thing with class ...
0
votes
1answer
356 views

PHP - Check if global class exists inside namespace

How can you check if a global class exists with class_exists if you are inside the namespace of another class? For example: <?php namespace Rvdv\Test\Example; class ExampleClass { public ...
1
vote
1answer
66 views

Extending PHP Class in Namespace

I have a PHP class-- a generic ODBC database interface. While the methods will never change (because it uses PDO), the connection string will. To avoid having the user pass in an entire connection ...
2
votes
4answers
179 views

Why accessing to class variable from within the class needs “self.” in Python? [duplicate]

Possible Duplicate: Python ‘self’ explained I'm learning Python and I have a question, more theoretical than practical, regarding access class variables from method of this class. For ...
1
vote
1answer
44 views

C2653: not a class or namespace without precompiled headers

I'm using VisualStudio 2010 to build a simple program with Qt 4.8.3, and i'm having trouble with a simple method definition: here is my code: GuiHelper.h #ifndef GUIHELPER_H #define GUIHELPER_H ...
0
votes
2answers
57 views

PHP are included classes part of namespace or global?

I have been looking into name spaces recently. I am creating an MVC framework and want to try to move towards PHP 5.3+ features. Lets say I define a namespace, call it \Controller. I then want to ...
3
votes
3answers
434 views

Why can't we declare a namespace within a class?

Declaring a class within a class is valid. (Nested classes) Declaring a namespace within a class is invalid. The question is: is there any good reason (other than c++ grammar/syntax problems) to ...
1
vote
0answers
38 views

Python: outside function applying changes to a class object's unique namespace

My question is how to program in Python (2.6) a function that uses a namespace of an object, while the function is defined outside the object/class. In addition, that function should only change the ...
0
votes
1answer
65 views

namespaces and class extends

Im trying to figure out how namespaces works in PHP, but havent really been lucky Hope somebody could tell me what Im doing wrong here :) code require_once 'Vatcode.php'; $Vatcode = new ...
1
vote
2answers
57 views

Is there a way to enter the class namespace in Python?

I found myself writing the following code: def dlt(translation): del translation.strands[translation.active][translation.locus] I would rather prefer something like: def dlt(translation): ...
0
votes
2answers
117 views

Is it bad practice to make a class that has only variable attributes in C++? [closed]

This one class I have has only protected variable attributes like int health and int level, but no methods. Is this bad practice? I am using this for a save game function and it only needs to use ...
4
votes
1answer
66 views

What are the implications of A::B class name in ruby?

I have a class Entity and inside this class I used to have an inner class called Config. class Entity class Config end end The Config class has grown quite big so I decided to take it out into ...
3
votes
1answer
76 views

“already exists in the namespace” message when creating a class diagram

I am trying to create class diagram in Visual Studio 2010 professional as a part of ASP .NET web application project. When I try to name a class "Customer" and .cs file, I get this message "'Customer' ...
0
votes
1answer
225 views

In VB.Net project design, what are the advantages and disadvantages between namespaces and Partial Public NotInheritable Classes

One of the more obvious advantages of using none-inheritable classes is that I can declare/implement shared/static methods in them. Here is a code sample, to help visualize the manner in which I am ...
0
votes
3answers
79 views

Curiosity about namespace and function parameters

one.h: namespace one { class X : public IZ { public: void function(); // virtual function (=0) in IZ } } two.h namespace one { class Y { public: ...
1
vote
1answer
159 views

Why do you have to include PHP file, when using namespace?

Let's say i've declared a namespace like this: <?php // File kitchen.php namespace Kitchen; ?> Why do i still have to include that file in all other files where i want to use kitchen.php ...
0
votes
2answers
167 views

Python class and namespace?

lets say I wanna define a class name MyClass. and I wanna use that class. so, class MyClass(): blabla MyClass = MyClass(abc) say I wanna make a function and use MyClass in that function. ...
0
votes
4answers
87 views

Why am I forced to use full namespaces?

I have created the following class: using System.Windows; using System.Windows.Input; using MyUtils.MyArgParser; namespace MyUtils.MyImplement { public static class ImplementExitOnEscape { ...
0
votes
1answer
78 views

How can I use one class inside another with the same namespace?

I'm using spl_autoload in my project, but when I try the following code, it gives me this error: Fatal error: Class 'Router\Route' not found in //Router File <?php namespace Router; class ...
-1
votes
1answer
105 views

JavaScript Namespace a function/class?

So say I have a function like so: function Moo() { this.someVal = 'blah'; return this; } Moo.prototype = { } If I instantiate an object from this class doing: var moo = new Moo(); ...
0
votes
2answers
532 views

C2653: 'GUI' : is not a class or namespace

Seriously getting on my nerves. This code was working just fine earlier, I restarted the IDE (Visual Studio 2010) and now suddenly the code goes bonkers on me. The error log is huge, and I have no ...
6
votes
5answers
131 views

calling functions above their declaration

void foo() { bar(); // error: ‘bar’ has not been declared } void bar() { } namespace N { void foo() { N::bar(); // error: ‘bar’ is not a member of ‘N’ } void ...
3
votes
1answer
90 views

PHP : Does extending class need another 'use' to call namespace?

I'm wondering whether in the situation where I'm extending a class that has already 'use' keyword above it to use specific namespace - do I need to add another 'use' above the inheriting class to use ...
0
votes
3answers
162 views

Same class name in same namespace

I'm working on a web-project and I was asked to move some files from a project to another project, but both of the projects are in the same solution. So I migrate File1 from project A to project B. ...

1 2 3 4