Tagged Questions
1
vote
2answers
49 views
Errors when compiling with include files (Own classes)
Information:Microsoft Visual Studio 2012 Ultimate, Windows 8 Professional, C++.
I Have a problem...
QIClassStringOperations.hpp
#include "Q.hpp"
class QIClassStringOperations
{
public:
...
2
votes
2answers
43 views
Includes and classes in C++
Well, i have the following problem.. I have main.cpp
#include "serverClass.h"
...
and then in serverClass.h,
#ifndef SERVERCLASS_H_
#define SERVERCLASS_H_
#include <stdio.h>
#include ...
1
vote
2answers
59 views
PHP include class in other class
I am learning OOP and very confuse to use classes for each other.
I am having total 3 classes
//CMS System class
class cont_output extends cont_stacks
{
//all methods to render the output
}
...
0
votes
1answer
29 views
Send a functions parameter to an array in another included file?
I'm trying to build a user signup class, where I'm using a language file, which I've include to my class. When a user tries to signup, I want my class to send the user an e-mail with information. ...
1
vote
1answer
49 views
Include classes in a groovy script
How can I include a few classes in a Groovy script?
(This question has nothing to do with REST, but I use REST to put the question in the right context)
Background:
I am developing a CLI in groovy ...
4
votes
1answer
102 views
Uncaught TypeError: undefined is not a function when including javascript class in a seperate file
Im new to classes in Javascript, but I trying to create a simple drawing app, with Raphael. The problem I have currently is with some code that works when it is in the same file, but then when I try ...
2
votes
2answers
99 views
Header files and include best practice
I have a quick question regarding header files, include statements, and good coding style. Suppose I have 2 classes with associated source and header files, and then a final source file where main() ...
0
votes
4answers
90 views
Header files and multiple class usage (EDIT: forward declarations)
I have a problem where I have several header files, and I need to include each of them in each other. Obviously, this cannot be done, because when I compile, the error "include nested too deeply" is ...
-4
votes
1answer
43 views
Using a var in my index outside a class PHP
How can i acces the $pos var outside a class? so i can use it in my index like: echo $pos i also icluded this class in my index.
public function CheckProfile(){
$get = ...
-3
votes
6answers
71 views
Why PHP include file contents getting displayed [closed]
I have two php files feed.php and main.php.
In main.php, I am using feed.php.
feed.php
class RSSFeed {
var $channel_url;
var $channel_title;
var $channel_description;
var ...
0
votes
2answers
71 views
include all directory files in class
I have a php file like this
class Config {
public static $__routes = array(
"Home" => "index.php",
"Support" => "support.php",
);
}
...
0
votes
2answers
49 views
Include filein array which in class [duplicate]
Possible Duplicate:
Can I include code into a PHP class?
Include file in array
I have this php code
<?php
class Config {
public static $__routes = array(
"Home" ...
1
vote
2answers
92 views
How to make an include “Private”?
Is there any way I can include a file in a class so it can use it but not allow anything including that class into the scope to be able to use it? To simplify lets say I have the iostream header in a ...
0
votes
2answers
65 views
Issues with declaring classes as part of a class
I'm having an issue writing a class as part of a C++ program - in it I have three classes, FirstClass, SecondClass, and ThirdClass - First and Second classes both include ThirdClass.h, and in ...
0
votes
2answers
54 views
Ruby give class variable include
I am playing with modules and classes to get something done.
When I fire up MyClass without any kind of inheritance I used class MyClass::A4.generate, where A4 overrides the format function.
A4 ...
1
vote
2answers
79 views
How to create a class with a queue as a data member which stores instances of another class in c++
I have a class office which is simulating a veterinarian office which of course processes animals.
I have another class dog, I wish to generate several instances of dogs into a queue inside of the ...
0
votes
4answers
168 views
PHP Using an Object from an included file in another included file
I will be straight to the point with this. Can't seem to find it anywhere on the internet. Maybe it is not even possible, i dont know. I do really like to use the method "divide and rule", created it ...
0
votes
2answers
61 views
how to manage multiple files, global variables, and defines
I have two classes, class "entity and class "tile".
Class "entity" has some member functions that uses a global array of type "tile". It also uses some defined numbers.
Class "tile" contains a ...
0
votes
3answers
87 views
Dependencies in Makefile not properly taken into account
I have some limited knowledge of GNU makefile that has failed me at the moment.
I have a class declaration file: mdfTree.h, an implementation of the class mdfTree.cpp, and a mdfTree_x.cpp file with a ...
0
votes
2answers
108 views
Undefined reference error to function in other file
I have a game program and I am getting VERY frustrated. Everything was running fine, and I decided to clean up my program by making separate files for each set of functions. The code is very long with ...
0
votes
1answer
188 views
PHP call class in class returns error:500 [closed]
I'm having a hard time new a class in another class.
This is an example of the setup:
index.php
<?php
include("functions/userFunctions.php");
$user = new UserFunctions ();
...
0
votes
2answers
142 views
php set variable before include and echo it after
I have an Admin class:
<?php
Class Admin extends Controller{
function __construct() {
parent::__construct();
}
function getPage(){
...
0
votes
1answer
404 views
PHP - Why a “Creating default object from empty value” warning even when class is defined? [closed]
There are numerous posts on the internet regarding this warning, and most of them have come to the same solution but that solution doesn't seem to be helping me. There's a lot of code involved, so ...
12
votes
2answers
281 views
Derived class defined later in the same file “does not exist”?
Let’s suppose we’ve got two php files, a.php and b.php
Here’s content of file a.php:
<?php // content of a.php
class A {
}
And here’s the content of file b.php
<?php // content of b.php
...
0
votes
1answer
95 views
VCL Forms Application
I have written some C++ Classes for a console application.
How do I use these classes in a VCL Forms Application. I am using C++ Builder XE2.
I have added the .h and .cpp files via the Project->Add ...
0
votes
2answers
77 views
PHP class file link issues?
I stated implementing object oriented design into my website. I'm using php, and ran into an issue.
As is my tendency, I like to define one class per one file - nothing else. Normally, if I remember ...
0
votes
0answers
37 views
header files' hieararchy, class object instance
I have three header files:
"Media.h" has class CMedia
"Basic.h" has class CBasic (it uses CMedia instance cmedia as its object)
"Utility.h" which has namespace nmUtil (its functions uses cmedia from ...
5
votes
3answers
97 views
Making a class usable to other programs
I'm building an evolution simulator in C++, but not as a "real" runnable program, but rather a class that other programs should #include. This class, called World, has some functions such as update(), ...
2
votes
4answers
107 views
Class A needs class B that needs class A and all its members
I'm definitely in a desperate case... Using C++, I have defined those two classes:
// Console.hpp
#ifndef CLASS_Console
#define CLASS_Console
#include <iostream>
#include "Window.hpp"
class ...
1
vote
1answer
60 views
How to include Ruby class extensions from other modules?
I want to make class extensions available to other modules/classes/files. For example:
module UsefulStuff
class Object
def blank?
respond_to?(:empty?) ? empty? : !self
end
end
end
...
0
votes
2answers
81 views
Including a class in another class
So I'm trying to use the Node class that I just wrote in my LinkedList class but I'm getting the error that:
Symbol 'Node' could not be resolved
in the code below.
#ifndef LINKEDLIST_H_
#define ...
0
votes
2answers
191 views
Creating a exported method library class in iOS
I'm sure my verbiage is what is stopping me from finding the right answer here.
I want to create an "Common" class that all of my other classes can use in xCode. This Common class will contain ...
0
votes
3answers
396 views
PHP Class path confliction when using include
I have a problem with including classes. Here's a simple example to explain the problem:
Class no. 1 (path: /home/day/Class_A.php):
class Class_A {
public function sayHi() {
echo "Good day";
...
0
votes
1answer
143 views
PHP and classes - write in session overwrites local variable
I have an index.php with the following content:
include_once('includes/auth.php');
include_once('classes/class.DatabaseQuery.php');
include_once('classes/class.Project.php');
...
0
votes
1answer
80 views
Return files content as include() function
I have 2 types of pages: Dynamic (which are located in db) and static (file based, like page.php)
I don't want to mess up index.php with bunch of if's or switch's. So I've created class, and methods. ...
-1
votes
2answers
199 views
PHP include scope class
so I have this problem I have 3 files like
2.php
<?php
$variable = 4;
?>
1.php
<?php
class foo {
function bar() {include_once('2.php');}
}
?>
index.php
<?php
...
0
votes
2answers
125 views
Cyclic class dependency while including header files in C++
I'm developing a C++ program using visual studio 2010. I've these class definitions & header files :
s.h :
class s : oe {
...
};
t.h :
class t : oe {
...
};
oe.h :
class oe {
...
0
votes
1answer
41 views
including several classes into one file
I'm trying to include all the classes in my core folder into one file. But, in the initial Core class where I assign the class objects to variables, I keep getting the error "Fatal Error: Class Not ...
1
vote
1answer
285 views
Php includes causing slow load times with ajax content load
I am currently working on this website, and i need some help regarding php and ajax.
I apologise if this is a simple fix, but i've looked everywhere and i can't find the solution.
Anyway, the links ...
0
votes
2answers
256 views
Do you really need to Auto-load ALL pages of a Class-based site on every pageload?
I've inherited a Class-based PHP site where every page of the site is its own Class. The index.php handles what page you view based on the p parameter, and then calls that specific Class. For ...
0
votes
2answers
837 views
Make <li> active with includes using PHP and CSS
I use these files as base for my website:
The menu.php:
$p = $_GET['p'];
switch($p)
{
case "home":
$p = "page/home.php";
break;
case "customers":
$p = ...
4
votes
2answers
231 views
calling same name function
Is it possible to call foo() function from Foo.cpp
without changing function name Foo::foo() to Foo::newfoo().
main.cpp
#include <iostream>
#include "Foo.hpp"
class Foo {
public:
void ...
0
votes
1answer
103 views
Headers needing each other
This question is closed because it is considered a duplicate of:
C++ cyclical header dependency
cyclic dependency between header files
C++ error: 'Line2' has not been declared
However the ...
0
votes
0answers
170 views
Including .class and .jar file in Eclipse for Android development
I'm new to Android and trying to include my own simple class file in another Android project. The class file I'm trying to include is as follows:
package com.common.sourceclass;
public class MyClass ...
1
vote
3answers
319 views
C++: can't pass an object instance to another class because of the #include loop
Let's say I have 2 classses:
// a.h
#ifndef A_H
#define A_H
#include "b.h"
class A {
public: void a() {
B* b = new B(this);
}
}
#endif
// b.h
#ifndef B_H
#define B_H
#include "a.h"
...
0
votes
2answers
457 views
Eclipse C++. Included .h files with classes. “Symbol '[class]' could not be resolved”
I have two .h files: List.h which contains struct Node and Linked list class, and SkipList.h which includes "List.h", has a class SkipList defined and uses a instances of classes from List.h.
I'm ...
0
votes
4answers
183 views
php i have included a file but cant call functions which are inside class
i have included a file in another file and now i want to use on of the functions from the included file.
when i go to the included file and put a variable there the variable get passed and its all ...
0
votes
2answers
117 views
PHP , class inside class , bug?
B.php:
class B
{
function show() { echo 'works'; }
}
A.php
class A
{
public static function defineB()
{
include "b.php";
}
}
A::defineB();
$b = new B;
var_dump($b);
...
1
vote
2answers
106 views
Class Variables Not Staying Set (PHP)
Alright, I'm not sure exactly 100% what's going on here, but I think it has to do with the fact that I'm trying to include a class using php's "include($file)" function.
the function import looks ...
0
votes
1answer
130 views
including php file From a static class method
I have 2 php files. I am unable to get B's global variable from A's static method:
A.php
class c_A
{ public static function f_A()
{ include_once( "B.php" ) ;
print f_B() ;
}
...

