aboutsummaryrefslogtreecommitdiff
path: root/bdep/new.cxx
blob: f2975c8fa2d015b5ac256af6f810ffbf0c5d00bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// file      : bdep/new.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#include <bdep/new.hxx>

#include <bdep/diagnostics.hxx>

using namespace std;

namespace bdep
{
  using type = cmd_new_type;
  using lang = cmd_new_lang;

  int
  cmd_new (const cmd_new_options& o, cli::scanner& args)
  {
    tracer trace ("new");

    //@@ TODO: validate options (cpp/cxx, -A/-C, etc).

    return 0;
  }
}