0
votes
2answers
47 views
Partially defaulting template arguments using typedefs?
I am trying to do something like this:
template <typename T,bool Strong=true>
class Pointer {...};
template <typename T>
typedef Pointer<T,false> WeakPointer;
…
1
vote
6answers
189 views
Access variables in C structures
Dear all!
I am not too familiar with C programming, and I have to do few modifications on a source code, here is the problem:
I have this in a header file :
typedef struct word …
1
vote
6answers
158 views
uint8_t vs unsigned char
What is the advantage of using uint8_t over unsigned char?
I know that on almost every system uint8_t is just a typedef for unsigned char,
so why use it?
this is in C (case you di …
1
vote
4answers
128 views
typedef’ing STL wstring
Why is it when i do the following i get errors when relating to with wchar_t?
namespace Foo
{
typedef std::wstring String;
}
Now i declare all my strings as Foo::String thro …
0
votes
4answers
171 views
What is wrong with this c++ typedef?
This is a piece of my code, I have more class like MathStudent, ArtStudent, etc. which inherits Student class. When I tried to compile, it says "forbids declaration of `vector' wit …
7
votes
6answers
202 views
Is typedef and #define the same in c?
I wonder if typedef and #define the same in c?
2
votes
5answers
197 views
Is There C Syntax For Function Pointer From Function Declaration
Instead of declaring a function pointer typedef for a function, is it possible to get it from the function declaration?
Typically,
int foo(int x);
typedef int (*fooFunc)(int);
fo …
0
votes
5answers
233 views
C++ typedef question…easy one..
let's say I have:
set<int, less<int> > m_intset;
that works, but now I change it to typedef, and if I do I end up with two lines of code, right?
typedef set<int, …
0
votes
3answers
133 views
typedef in c and type equivalence
If I do this:
typedef int x[10];
x a;
Is it same as:
int a[10]; ?
3
votes
3answers
62 views
#typedef and KVC in ObjC
I have a class that looks like this:
@interface Properties : NSObject {
@private
NSNumber* prop1;
NSNumberBool* prop2;
//etc
where NSNumberBool is a typedef:
// in …
0
votes
1answer
79 views
Objective-C use typedef enum to set Class behavior, like Cocoa.
Hi
Im extending the UIButton Class to be able to set the font and color of the UINavigationBarButton ( from this code example: switch on the code )
I goes like this:
@interface …
0
votes
3answers
141 views
Recommended approach to typedefs for standard types in C?
What's the recommended approach to typedefs for standard types in C?
For example at the start of my project I created typedefs to use the smallest types possible for their purpose …
0
votes
5answers
109 views
typedef in template base class
I'm trying to define base class, which contains typedef's only.
template<typename T>
class A
{
public:
typedef std::vector<T> Vec_t;
};
template<typename T&g …
2
votes
3answers
255 views
Understanding typedefs for function pointers in C: Examples, hints and tips, please.
I have always been a bit stumped when I read other peoples' code which had typedefs for pointers to functions with arguments. I recall that it took me a while to get around to such …
2
votes
3answers
121 views
Creating a new primitive type
Is there a way to create a new type that is like one of the basic types (eg char), and can be implcitly converted between, but will resolve diffrently in templates, such that for e …
