A provision that many programming languages provide to allow code (functions, classes, objects) in one file to be used in many others.

learn more… | top users | synonyms (2)

0
votes
0answers
37 views

Undefined reference to the function

It seems that I can't compile my project because of some linking error, but I can't find it. I have a parser class where methods from a scanner class are used. And complier marks every entry of any ...
0
votes
0answers
5 views

include array table from file (Symbole could not be resolved)

I use gcc and eclipse jumo with Android IDE v21.: in main I have table: char t[] = {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20}; and call this table: ...
0
votes
2answers
27 views

requiring php config classes, but file not found

In my opinion I'm requiring all necessary files but I keep getting the error that one file is not found. All files are in the same folder. This is my code for zConfig.php: <?php class zConfig { ...
0
votes
0answers
14 views

setError() doesnt work on EditText from merged layout using <include layout=“@layout/address_from_merge” />

I m creating signup activity, & in its layout i m "merging address_from_merge"-layout, but at run time setError() doesnt get work on any EditText from merged layout,i.e. doesn't get validated ...
1
vote
2answers
23 views

Including config file in PHP

I am developing a project where I am not able to include the files. My Folder Structure: --Myproject -----Config ----------config.php -----Includes ----------Images ---------------image.jpg ...
0
votes
2answers
39 views

Include php file with html via js include

Ok so I am tasked to work with this third party vendor that shows movie times on their end. We have the chance to co-brand our site on their end, so in order to do that we need to create a wrapper of ...
0
votes
1answer
21 views

Include vs Extend for data access

This is a design question that has irked me because deep down I know I'm doing it wrong. This is not necessarily just a PHP problem, but I'm working on a PHP project now so that's where I'm coming ...
0
votes
0answers
15 views

Is there a better way than PHP include()

My sites include large segments of data via php's include(). This has worked well but I'm building a CMS and ran into an issue... When I load the page to be edited, the included file doesn't print. ...
0
votes
1answer
18 views

Superclass of cpp object included in .cc file not header file

I've downloaded a toolkit (namely IRTK from Imperial college) and I have compiled and installed it using CMake. As part of the installation it has copied all of the relevant header files into ...
0
votes
0answers
26 views

How to recursively add include and link directories to visual studio 2012 after installing a new c++ library?

I have read that this option could be specified in a cMakeList.txt however I have already built the library and looking for a post install cMake script to do the job.
0
votes
1answer
16 views

Call result controller/view in anoter view

I try to call controller/view in another view. I have a homepage Default:index using a block view of my controller Event and I want to put this block.html.twig in my folder of my controller. In my ...
0
votes
1answer
16 views

node.js - include .js files within socket.on('connection') method

Is it possible to include files like this? I need write a lot of code and it could help me with clarity. P.S. Sorry for my English ;) io.sockets.on('connection', function(client) { // include ...
1
vote
0answers
34 views

Java variable across multiple include blocks - variable cannot be resolved

I have jsp page that looks something like this: MyPage.jsp <%@ include file = "/Title.jsp" %> <%@ include file = "/Header.jsp" %> <html>...</html> In Title.jsp there is a ...
0
votes
0answers
26 views

Make a Page Pull Different PHP elements based on Browser language

Im trying to figure out a basic multi-language solution for a rather convoluted search engine website architecture and I was wondering if it was possible to have the main search result page templates, ...
0
votes
0answers
22 views

Entity framework - Issue when using include in Oracle

I have a problem in Entity Framework using Oracle. I get the error ORA-01792: maximum number of columns in a table or view is 1000. The particular Linq which throws the error has 5 Include. when ...
-1
votes
1answer
28 views

nested tag such as {% include “{% static 'some.html' %}” %}

{% load staticfiles %} {% include "{% static 'some.js' %}" %} Having trouble making it work. What's the proper syntax here? Edit. I'm trying to include a *.js file here actually. Does it make ...
0
votes
1answer
42 views

Railo 4 MissingInclude

I am running Windows 2008 R2 with Railo 4. I am having a problem with Railo 4 not seeing the virtual directories defined in IIS. I know that in ColdFusion 8, I just define the virtual directory in ...
2
votes
6answers
62 views

C++ How to include class headers without having to compile their cpp files?

We can include < iostream > and we do not care about its cpp file, but why can't we do the same for our own classes ? So if my project uses 50 custom classes, not only do I have to have 50 ...
0
votes
6answers
35 views

How to import all classes within filesystem in php?

The folder structure is like so: /main.php /lib/class1.php /lib/class2.php /lib/class3.php I want to have main.php make available all the classes in lib without doing a ton of ...
0
votes
0answers
38 views

Include linkage issues g++ Debian

I'm having some issues with the include linkage with g++ Here is the compilation line : g++ main.cpp -I./libgdl_gl/include/ My main.cpp is in the same directory as the folder libgdl_gl, and this ...
0
votes
1answer
20 views

Call-time pass-by-reference has been deprecated in include()

I moved my website from one server to another. Everything runs, but since I have the new server, the logs Deprecated function: Call-time pass-by-reference has been deprecated in include() (line 6 ...
0
votes
2answers
41 views

__DIR__ and autoloading php

I don't know if this is exactly a problem in autoloading, but I am having this problem, here is my code: index.php require __DIR__ . '/app/autoload.php'; Folder structure: index.php app/ ...
0
votes
2answers
29 views

How do I use Berkelium library in C++ code?

I want to use this library (https://github.com/sirikata/berkelium/downloads) with g++ compiler. It has 3 folders: bin, lib and include. What I do with files in each of the folder? And in my C++ code, ...
0
votes
2answers
18 views

Is there a way to show picture if html has been included in another file

Problem: I have a file called index.html. this file has been included in another file called main.asp. <!--#include virtual="/template/index.html"--> index.html has a image tag <img ...
0
votes
1answer
40 views

#include <afxinet.h> in a header file causes a lot of compilation error, however, include it in a cpp file is ok

the first error when putting #include <afxinet.h> in a header file IntelliSense: #error directive: WINDOWS.H already included. MFC apps must not #include <windows.h> (1) Any idea why ...
0
votes
1answer
42 views

Include a file multiple times with different macros

I got a file that contains generic methods for working with arrays of different number types (the basic ideas are described in Pseudo-generics in C). The type can be specified by setting a TYPE macro. ...
0
votes
2answers
29 views

File content variable value [closed]

first.php <?php $name ="somthing"; ?> second.php $data = file_get_contents(first.php); Now I want get $name variable value from $data variable. How to do it?
0
votes
0answers
21 views

Adding \includegraphics totally abolishes all \citep and \ref links [closed]

I have something very peculiar, and I have been trying for several hours now, without success. I will try to describe it as well as possible. I must say beforehand that I used Word2010 as editor. So I ...
-1
votes
2answers
39 views

Include error.Functions already declared

I've read a lot for this problem ,but I haven't found a proper solution. So i have 4 files: includes.h - which contains all libraries I need in other files + some global functions cities.h - which ...
0
votes
1answer
22 views

Opening file php

Supposing I have a file called "utils.php" where I open a file for writing or reading: $myfile="myfile.txt"; $fileout=fopen($myfile,'w') or die("Not opened"); Now if I have another script UNDER ...
1
vote
0answers
33 views

php: proccesing form from another server [closed]

I am developing a web-app for the company I work at. It’s located at www.myapp.com. It’s mainly for internal use. BUT… there is one thing customers need to consult, so this functionality has to be ...
0
votes
0answers
43 views

Asp.Net MVC 4 routing and link generation

In ASP.NET MVC 4 I wonder about the behavior, how links are generated for me. Imagine a simple controller with 3 actions, each taking an integer parameter "requestId", for example: public class ...
0
votes
0answers
15 views

MSVS : C++ : Allegro 5 template : Agui GUI API : How to setup includes?

I use the Allegro 5 library to work with graphics in C++ in Microsoft Visual Studio. I found this great Allegro 5 template called "Agui GUI API" but have struggled to understand how to set it up. I am ...
0
votes
1answer
39 views

Arduino & C: put a function and global variable in external file

This should be a simple problem. I'm trying to split up code into two files within a sketch: test.ino: void setup(){} void loop(){ fn(); } test.c: char myChar = '?'; void fn(){ myChar++; } I've ...
3
votes
2answers
72 views

Do I have to use #include <string> beside <iostream>?

I started learning C++ and I read a book which writes that I must use the <string> header file because the string type is not built directly into the compiler. If I use the <iostream> I ...
1
vote
2answers
27 views

Trying to include a file, file_exists is essential?

Sorry for possiblely reduplicate asking. But it's hard to use this confusable keyword to search a answer. So here is scenario: I try to get a advise to make my simple autoloader. Here is i made so ...
0
votes
2answers
32 views

php include file with / in name?

can anyone tell me if it's possible to include a file that includes a / in the filename? Does the name need to be escaped a certain way when calling it in include? Or not possible. ie. ...
0
votes
1answer
22 views

windows 7 -> vs10 -> OpenCV *DesperateForHelp*

Hey i have searched every where about this issue and i still cant find my answers. Here's the deal, I'm a beginner and for my semester project i need to use the OpenCV. During its installation I'm ...
-3
votes
3answers
37 views

adding variable to php include() [closed]

Ok, so seached high and low, and cannot find example of this anywhere. Maybe I'm going about this the wrong way. $var = "http://example.com/"; include($var . "some-directory/some-page.html"); Error ...
0
votes
1answer
57 views

How to handle multilevel includes in c?

I have second level include that is giving me grief: Undefined first referenced symbol in file function2 /var/tmp//ccAPaWbT.o ...
0
votes
2answers
40 views

Is it possible to include functions from .c file without compiling it?

I am restricted by very specific (and rather senseless...) filing system and I can't create header files or split existing files into files holding only functions and only execution calls. I can only ...
1
vote
1answer
42 views

CSS styles and Jquery do not get applied to jsp:include file [closed]

I am using eclipse and Tomcat 7. I have an index.jsp page. In the index.jsp file, I include login.jsp file using jsp:include tag. when I first run the application, the page gets rendered as ...
1
vote
1answer
46 views

How to check in cmake whether a given header file is available for C++ project

I am using cmake to manage compilation of my project and it is my first time to use cmake. This tool is very convenient, as there is plethora of scripts and functions which allows to check if all ...
0
votes
2answers
19 views

How can I do that? Classes call functions from each others (include-forward anomaly)

I would like to call the Foo() function from class A through the other class's pointer (I cannot include the other class's header, cause I do that on the other class, so it would result a ,,contains ...
0
votes
1answer
46 views

C++: get Boost working; questions on include path and linking library

I was trying to use Boost.Tokenizer library. In my PROG.cpp, I have the following: #include <boost/tokenizer.hpp> And my Makefile was initially something like CXX = g++-4.8 CXXFLAGS = ## ...
0
votes
1answer
43 views

How to include a Python programmed game in HTML?

I'm practicing and want to start a new simple web page. I'm a Python and HTML beginner, and I had a simple idea... To program a simple "rock, paper, scissors" game to be played in a console (I haven't ...
0
votes
1answer
17 views

Allowing 1 Directory on a Webserver to be accessed for Includes by others

The circumstances are this, I have a hosting package for my website, that doesn't allow me access to the php.ini or httpd.conf. I have taken on various clients, that want to keep the current hosting ...
0
votes
0answers
13 views

file not including in wordpress header

i want to include a file in the header file which is in this directory : wp-content/themes/themename/header.php the code i used for inclusion is : ...
0
votes
0answers
34 views

CppUnit and include problems

I have a project that have a Container class and an iterator class. In the code, the container looks like: #pragma once #ifndef size_type #define size_type unsigned int #endif #include "Iterator.h" ...
0
votes
3answers
29 views

PHP include files from another directory that also include files

I have includes in multiple files, i recently started a new directory and am unable to get some of my includes to work. for example i have this include in my postpage.php which is located at ...

1 2 3 4 5 78