智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/23/23cde4b794471282adabd5e449d...

34 lines
646 B

#ifndef SASS_LISTIZE_H
#define SASS_LISTIZE_H
#include <vector>
#include <iostream>
#include "ast.hpp"
#include "context.hpp"
#include "operation.hpp"
#include "environment.hpp"
namespace Sass {
struct Backtrace;
class Listize : public Operation_CRTP<Expression_Ptr, Listize> {
Expression_Ptr fallback_impl(AST_Node_Ptr n);
public:
Listize();
~Listize() { }
Expression_Ptr operator()(Selector_List_Ptr);
Expression_Ptr operator()(Complex_Selector_Ptr);
Expression_Ptr operator()(Compound_Selector_Ptr);
template <typename U>
Expression_Ptr fallback(U x) { return fallback_impl(x); }
};
}
#endif