The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
31 views

How to select a method via boost enable_if [duplicate]

I have the following code block that doesn't compile: struct Traits { static const bool A = true; static const bool B = false; }; template <typename T> struct Object { static void ...
2
votes
5answers
79 views

Android: Enable / Disable a button in Runtime?

Ok, so I have two buttons. The first one is to "Load Text" and the second is to "Speak Out". Now, I don't want the Speak button to be active while there is no text loaded. I've managed to set value ...
4
votes
1answer
114 views

Check if type is declared as a meta type system (for SFINAE)

To make a case distinction for a parameter t of type T using SFINAE, I want to know if the statement QVariant::fromValue(t); and / or QVariant::value<T>(); compiles. If the one compiles, ...
0
votes
1answer
73 views

Buttons not enabling/disabling

My program runs a test over a serial connection. After I click the RUN TEST button everything works great. The RUN TEST button disappears and the STOP button pops up. Data collection runs as ...
3
votes
2answers
140 views

Use std::tuple for template parameter list instead of list of types

I'm trying to make a call to a templated function like this : typedef std::tuple<int, double, bool> InstrumentTuple; Cache cache; InstrumentTuple tuple = cache.get<InstrumentTuple>(); ...
0
votes
1answer
41 views

enable_if boost::fusion callable

Is there a way to use enable_if specifically for boost::fusion callable objects? template<typename F> void do_something(F f, enable_if< is_fusion_callable_object<F> >::type * = 0) { ...
6
votes
1answer
123 views

Correct signature of / detect presence of Container::reserve()

Given a type C which is an STL-conforming container, how do I correctly detect if C contains a member function reserve? I tried the following approach (with GCC 4.6.3): template< typename C, ...
1
vote
1answer
107 views

enable_if + type template, no SFINAE (enable_if_c without boost ?)

I understand from reading various posts that the following is not supposed to compile. #include <type_traits> #include <iostream> template <bool is_constant> struct A { // Need ...
19
votes
2answers
884 views

Why to avoid std::enable_if in function signatures

Scott Meyers posted content and status of his next book EC++11. He wrote that one item in the book could be "Avoid std::enable_if in function signatures". std::enable_if can be used as a function ...
0
votes
3answers
211 views

change value of attributes of a tag using javascript

I have the following HTML generated by Drupal <fieldset id="webform-component-lunchset" class="webform-component-fieldset form-wrapper" style=""> <div ...
4
votes
3answers
162 views

Why compile error with enable_if

Why this does not compile with gcc48 and clang32? #include <type_traits> template <int N> struct S { template<class T> typename std::enable_if<N==1, int>::type ...
4
votes
1answer
164 views

Using C++11 std::enable_if to enable member function if vector is specific length

I am writing a simple vector class and I would like to have some member functions that are only available in vectors of certain lengths (cross product for a 3 element vector for example). I stumbled ...
3
votes
5answers
3k views

Android: How to enable\disable Flight mode on Android 4.2?

Is there a way to disable or enable Fight Mode on Android 4.2? I use this code that works only for previous Android versions: android.provider.Settings.System.putInt(c.getContentResolver(), ...
7
votes
1answer
113 views

Optionally supporting initializer_list construction for templates maybe wrapping containers

If I have a template that wraps a standard container, it seems I can reasonably easily delegate the initializer_list constructor: template<typename T> struct holder { T t_; holder() : ...
0
votes
2answers
82 views

std::enable_if second ask

I am quite new to std::enable_if and wondering how to use it. I have a template class: template<int a, int b> class foo { int c; } I only want the template to have member c when a = 5. ...
1
vote
3answers
207 views

c# winsform How do i enable button while there is a string in my textbox?

I have a textbox and a button in form2. when an item is clicked in form1, form2 appears, ill like to keep the button in form2 disabled while the textbox is empty, but when user starts type, ill like ...
2
votes
1answer
238 views

Overloading member functions of class template with enable_if's [duplicate]

Possible Duplicate: std::enable_if to conditionally compile a member function I'm trying to overload the method Foo<T>::bar() for specific types of T as follows -- without success. ...
2
votes
1answer
99 views

Lazy enable_if sleeping on the job?

With the definition shown below, I can call qget<0>() or qget<1>() using G++ (4.7.2), but qget<2> or "higher" will fail with a no matching function error. Clang++ (3.2), meanwhile, ...
2
votes
1answer
69 views

Why don't either of these function templates match the instantiations?

The following code fails to compile with Intel C++ 2013. #include <type_traits> #include <iostream> template < typename T, typename ...
3
votes
1answer
112 views

C++ Type traits in constructor causing error [duplicate]

Possible Duplicate: Where and why do I have to put the “template” and “typename” keywords? I want to have a constructor that takes a single argument and is only ...
4
votes
3answers
171 views

Implicit constructor available for all types derived from Base excepted the current type?

The following code sum up my problem : template<class Parameter> class Base {}; template<class Parameter1, class Parameter2, class Parameter> class Derived1 : public ...
5
votes
2answers
202 views

std::enable_if or SFINAE for iterator or pointer

I would like to write a constructor for MyClass that take an argument and I want this to compile only if the argument is a pointer or an iterator (something having iterator_traits). How to achieve ...
0
votes
1answer
172 views

boost::enable_if MSVC

I have code, that compiles and runs as expected in gcc and doesn't compile in MSVC 2012 RC, i can't explain why, so it's bug in MSVC, or my code is incorrect? #include <boost/mpl/vector.hpp> ...
1
vote
2answers
124 views

Specializing groups of functions for generic types

The fallowing code works with gcc 4.7. The idea is i have these generic functions, which work on sequences, pointers, tupples, pairs, user-defined types, and whatnot. If one of these functions is ...
3
votes
2answers
233 views

Add/Remove data members with template parameters?

Consider the following code : template<bool AddMembers> class MyClass { public: void myFunction(); template<class = typename std::enable_if<AddMembers>::type> ...
0
votes
3answers
212 views

Boost enable_if in constructor

I have a templated class, and I want to enable a certain constructor only when the type is a double. What's wrong with this code? template<typename T> class B: public A<T> { public: ...
0
votes
1answer
113 views

Enable next row in ListView via checkbox in current row

I have a ListView with a TextView and a Checkbox on every row. I'm trying to create a sequence where the user has to click on the Checkbox of the first row to enable the next row and remove a grayed ...
8
votes
5answers
468 views

How to write a type trait `is_container` or `is_vector`?

Is it possible to write a type trait whose value is true for all common STL structures (e.g., vector, set, map, ...)? To get started, I'd like to write a type trait that is true for a vector and ...
3
votes
3answers
263 views

How to make this boost::enable_if code compile (SFINAE)?

I'm puzzled why the following code that uses boost::enable_if doesn't compile. It checks if type T has a member function hello and calls it if that's the case: #include <iostream> #include ...
2
votes
1answer
187 views

What am I doing wrong with enable_if and has_member?

I think I've been staring at this for too long or something, but I can't find my error here: struct { bool empty() const { return true; } } hasEmpty; template<typename T> ...
0
votes
1answer
85 views

enable_if allowing base class only

I'm currently implementing some CRTP with a base class template<class CRTP> Base and derived classes Derived1 : public Base<Derived1>, Derived2 : public Base<Derived2>... The ...
1
vote
1answer
155 views

Re-Adding Bullet & Italics to CkEditor

I have inherited an MVC3 C# .Net Web App which uses CkEditor. The ability to insert bold text and italicized text has been removed from the CkEditor boxes by another developer (who is no longer ...
5
votes
2answers
169 views

Template method enable_if specialization

i have following code that does not compile. This are two functions in a template class that takes the arguments typename std::enable_if<std::is_void<Ret>::value, Ret>::type ...
1
vote
1answer
216 views

enable_if iterator as a default template parameter?

I have a constructor like that : class MyClass { template<class TI> MyClass(TI first, TI last); }; template<class TI> MyClass::MyClass(TI first, TI last) { ; } I would like to ...
4
votes
4answers
167 views

“enable_if” in Haskell

How do I write something like the following in Haskell: showSquare :: (Show a, Num a) => a -> String showSquare x = "The square of " ++ (show x) ++ " is " ++ (show (x * x)) showSquare :: (Show ...
0
votes
3answers
669 views

Enabling a button from another form and closing the form

I have Form1 and Form2 Form1 I have a button that is disabled, but if I click on the menustrip on Form1 I go to Form2. On Form2 I log into a database. After I logged in successfully, I want Form2 to ...
3
votes
1answer
289 views

KnockoutJS: based on length of array enable button

In a project we're doing, we have created an inbox where the users (amongst other things) can select the items. If a user selects an item, the button should be enabled -- if none are selected, the ...
1
vote
1answer
191 views

How do you prototype a function with an enable_if<>::type return type?

Below I have 3 prototypes. I expected the first one (commented out) to work, but that's the only one that doesn't work (see comments in code for errors). Even more surprising to me is that either of ...
1
vote
1answer
201 views

Problems with enable_if SFINAE

I have been having some inexplicable SFINAE problems in a program I'm writing, so I boiled it down to a freestanding example program: #include <type_traits> struct Base { }; struct Derived : ...
2
votes
1answer
226 views

enable_if and constructors

Whats wrong with this? I thought this should work when using enable if??? Help?? Shouldnt the second constructor be excluded? #include <iostream> #include <boost/type_traits.hpp> ...
1
vote
1answer
272 views

How do I only enable the last days of months with Datepicker Jquery?

So my question is pretty simple. I'd like to have specific dates that are enabled on a datepicker, like this http://tokenposts.blogspot.fr/2011/05/jquery-datepicker-disable-specific.html but I only ...
0
votes
1answer
108 views

C++ template class inheritance checking

I have been stumped all day on this problem. Basically I want to check to confirm the template type inherits from a class that will work for what I'm doing. To do this I used std::enable_if, and I ...
0
votes
1answer
232 views

boost:enable_if to define a dedicated method in a templated class

I would like to have a custom method - I will call MyMethod - in a templated class - I will call Foo - ONLY when Foo has been instanciated with certain template parameters types (eg. when A is int and ...
3
votes
1answer
167 views

std::enable_if with std::is_reference fails to compile

Like std::reference_wrapper uses a pointer under the covers to store a "reference", I am trying to do something similar with the following code. #include <type_traits> struct Foo { void* ...
1
vote
1answer
97 views

specialized member function based on baseclass

This question is similar to: c++ template specialization for all subclasses Instead of a templated function, now I have a member function of a templated class which needs to do different things based ...
3
votes
4answers
343 views

How can I conditionally define the default-constructor?

I was thinking of a class like: template < typename ...Whatever > class MyClass { public: static constexpr bool has_default_ctr = Something; // I want this only if "has_default_ctr" is ...
2
votes
2answers
323 views

How to change a template method based on whether the type is an integral or floating point type?

I'm working on a Matrix class which takes both integral (short, int, long) and floating point types (float, double). I want some methods to be restricted to only floating point types (such as the ...
1
vote
1answer
245 views

“Faking” Template class method specialization with enable_if

I wonder if the SFINAE principle/enable_if's can be used to "fake" the partial specialization of the class template method. For example, given the class template Foo in which two versions of Foo::bar ...
4
votes
3answers
189 views

Using enable_if to optionally add a struct member

Given this template: template <class A> struct Something { ... // members common to all template instantiations for all A types SpecialType member; // but not this - I want this to be ...
1
vote
1answer
527 views

std::enable_if, template specialization and inheritance

I would like to ask you about some advices about this code. It works, but I think it can be written in a more elegant way. It's a C++11 piece of code, so keep it in mind when you compile it ;) ! ...

1 2