Tagged Questions
15
votes
17answers
23k views
prevent direct access to a php include file
I have a php file which I will be using as exclusively as an include. Therefor I would like to throw an error instead of executing it when it's accessed directly by typing in the URL instead of being ...
7
votes
3answers
167 views
Protecting one class from the bad programming of another?
Is there a way in PHP to try to include a file, but if the file contains errors that stop it from compiling to just skip that file from inclusion?
3
votes
3answers
162 views
Inclusion problem
I have an inclusion pattern as follows:
/*
* Class1.h
*/
#ifndef CLASS1_H_
#define CLASS1_H_
#include "Class2.h"
namespace Class1_namespace
{
class Class1
{
Class2* Class2_ptr;
void ...
2
votes
2answers
286 views
C++ cyclic inclusion issue
I have this file logger.hpp:
#ifndef _LOGGER_HPP_
#define _LOGGER_HPP_
#include "event.hpp"
// Class definitions
class Logger {
public:
/*!
* Constructor
*/
Logger();
/*!
...
1
vote
6answers
224 views
C++ #include guards
SOLVED
What really helped me was that I could #include headers in the .cpp file with out causing the redefined error.
I'm new to C++ but I have some programming experience in C# and Java so I ...
1
vote
1answer
38 views
gcc/xCode — #include that does not trigger an error (or warning) if the file does not exist?
Is this possible?
Basically, what I want to do is something like this:
#includeIfItExists "header.h"
and if header.h does not exist, the compiler simply continues on its merry way.
1
vote
4answers
182 views
Should the include guards be unique even between namespaces?
I am using same class name in two namespaces, say A and B. Should the include guards be unique while declaring the classes with different namespaces too?
I mean can't there be two files names AFile.h ...
1
vote
3answers
168 views
functions used in multiple classes
i sort of asked this before, but i used what i was told to try to get my program to work:
Its probably because I am noob at C++, but I am having trouble using #ifndef due to the problem that my ...
1
vote
6answers
430 views
C++ Header Guard issues
I am making a small C++ framework, which contains many .h and .cpp.
I have created a general include which include all my .h file such as:
framework.h
#include "A.h"
#include "B.h"
#include "C.h"
...
1
vote
3answers
663 views
Are redundant include guards necessary?
Are 'redundant include guards' necessary in Codegear RAD Studio 2009? Is the compiler smart enough to deal with this on it's own?
For example, I might have the following 'include guard' in foo.h:
...
1
vote
5answers
343 views
Tricky include situation in C
I have a file named cpu.h that includes two other headers named register.h and addrmode.h. A cpu_t struct is defined in cpu.h that the two includes need for their functions. I try to include cpu.h in ...
0
votes
3answers
172 views
Double include solution?
In C++, I have a problem with a double include:
File stuffcollection.h
#pragma once
#ifndef STUFFCOLLECTION_H
#define STUFFCOLLECTION_H
#include "Stage.h"
class Stuffcollection {
public:
...